In [1]:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from pathlib import Path
import random
In [2]:
ball_changeup_00 = pd.read_csv(Path('0_0/changeup/ball_ch_00.csv'))
call_changeup_00 = pd.read_csv(Path('0_0/changeup/call_ch_00.csv'))
foul_changeup_00 = pd.read_csv(Path('0_0/changeup/foul_ch_00.csv'))
hbyp_changeup_00 = pd.read_csv(Path('0_0/changeup/hbyp_ch_00.csv'))
play_changeup_00 = pd.read_csv(Path('0_0/changeup/play_ch_00.csv'))
swng_changeup_00 = pd.read_csv(Path('0_0/changeup/swng_ch_00.csv'))

ball_curveball_00 = pd.read_csv(Path('0_0/curveball/ball_cb_00.csv'))
call_curveball_00 = pd.read_csv(Path('0_0/curveball/call_cb_00.csv'))
foul_curveball_00 = pd.read_csv(Path('0_0/curveball/foul_cb_00.csv'))
hbyp_curveball_00 = pd.read_csv(Path('0_0/curveball/hbyp_cb_00.csv'))
play_curveball_00 = pd.read_csv(Path('0_0/curveball/play_cb_00.csv'))
swng_curveball_00 = pd.read_csv(Path('0_0/curveball/swng_cb_00.csv'))

ball_cutter_00 = pd.read_csv(Path('0_0/cutter/ball_ct_00.csv'))
call_cutter_00 = pd.read_csv(Path('0_0/cutter/call_ct_00.csv'))
foul_cutter_00 = pd.read_csv(Path('0_0/cutter/foul_ct_00.csv'))
hbyp_cutter_00 = pd.read_csv(Path('0_0/cutter/hbyp_ct_00.csv'))
play_cutter_00 = pd.read_csv(Path('0_0/cutter/play_ct_00.csv'))
swng_cutter_00 = pd.read_csv(Path('0_0/cutter/swng_ct_00.csv'))

ball_fastball_00 = pd.read_csv(Path('0_0/fastball/ball_fb_00.csv'))
call_fastball_00 = pd.read_csv(Path('0_0/fastball/call_fb_00.csv'))
foul_fastball_00 = pd.read_csv(Path('0_0/fastball/foul_fb_00.csv'))
hbyp_fastball_00 = pd.read_csv(Path('0_0/fastball/hbyp_fb_00.csv'))
play_fastball_00 = pd.read_csv(Path('0_0/fastball/play_fb_00.csv'))
swng_fastball_00 = pd.read_csv(Path('0_0/fastball/swng_fb_00.csv'))

ball_slider_00 = pd.read_csv(Path('0_0/slider/ball_sl_00.csv'))
call_slider_00 = pd.read_csv(Path('0_0/slider/call_sl_00.csv'))
foul_slider_00 = pd.read_csv(Path('0_0/slider/foul_sl_00.csv'))
hbyp_slider_00 = pd.read_csv(Path('0_0/slider/hbyp_sl_00.csv'))
play_slider_00 = pd.read_csv(Path('0_0/slider/play_sl_00.csv'))
swng_slider_00 = pd.read_csv(Path('0_0/slider/swng_sl_00.csv'))

ball_splitter_00 = pd.read_csv(Path('0_0/splitter/ball_sp_00.csv'))
call_splitter_00 = pd.read_csv(Path('0_0/splitter/call_sp_00.csv'))
foul_splitter_00 = pd.read_csv(Path('0_0/splitter/foul_sp_00.csv'))
hbyp_splitter_00 = pd.read_csv(Path('0_0/splitter/hbyp_sp_00.csv'))
play_splitter_00 = pd.read_csv(Path('0_0/splitter/play_sp_00.csv'))
swng_splitter_00 = pd.read_csv(Path('0_0/splitter/swng_sp_00.csv'))
In [3]:
ball_changeup_01 = pd.read_csv(Path('0_1/changeup/ball_ch_01.csv'))
call_changeup_01 = pd.read_csv(Path('0_1/changeup/call_ch_01.csv'))
foul_changeup_01 = pd.read_csv(Path('0_1/changeup/foul_ch_01.csv'))
hbyp_changeup_01 = pd.read_csv(Path('0_1/changeup/hbyp_ch_01.csv'))
play_changeup_01 = pd.read_csv(Path('0_1/changeup/play_ch_01.csv'))
swng_changeup_01 = pd.read_csv(Path('0_1/changeup/swng_ch_01.csv'))

ball_curveball_01 = pd.read_csv(Path('0_1/curveball/ball_cb_01.csv'))
call_curveball_01 = pd.read_csv(Path('0_1/curveball/call_cb_01.csv'))
foul_curveball_01 = pd.read_csv(Path('0_1/curveball/foul_cb_01.csv'))
hbyp_curveball_01 = pd.read_csv(Path('0_1/curveball/hbyp_cb_01.csv'))
play_curveball_01 = pd.read_csv(Path('0_1/curveball/play_cb_01.csv'))
swng_curveball_01 = pd.read_csv(Path('0_1/curveball/swng_cb_01.csv'))

ball_cutter_01 = pd.read_csv(Path('0_1/cutter/ball_ct_01.csv'))
call_cutter_01 = pd.read_csv(Path('0_1/cutter/call_ct_01.csv'))
foul_cutter_01 = pd.read_csv(Path('0_1/cutter/foul_ct_01.csv'))
hbyp_cutter_01 = pd.read_csv(Path('0_1/cutter/hbyp_ct_01.csv'))
play_cutter_01 = pd.read_csv(Path('0_1/cutter/play_ct_01.csv'))
swng_cutter_01 = pd.read_csv(Path('0_1/cutter/swng_ct_01.csv'))

ball_fastball_01 = pd.read_csv(Path('0_1/fastball/ball_fb_01.csv'))
call_fastball_01 = pd.read_csv(Path('0_1/fastball/call_fb_01.csv'))
foul_fastball_01 = pd.read_csv(Path('0_1/fastball/foul_fb_01.csv'))
hbyp_fastball_01 = pd.read_csv(Path('0_1/fastball/hbyp_fb_01.csv'))
play_fastball_01 = pd.read_csv(Path('0_1/fastball/play_fb_01.csv'))
swng_fastball_01 = pd.read_csv(Path('0_1/fastball/swng_fb_01.csv'))

ball_slider_01 = pd.read_csv(Path('0_1/slider/ball_sl_01.csv'))
call_slider_01 = pd.read_csv(Path('0_1/slider/call_sl_01.csv'))
foul_slider_01 = pd.read_csv(Path('0_1/slider/foul_sl_01.csv'))
hbyp_slider_01 = pd.read_csv(Path('0_1/slider/hbyp_sl_01.csv'))
play_slider_01 = pd.read_csv(Path('0_1/slider/play_sl_01.csv'))
swng_slider_01 = pd.read_csv(Path('0_1/slider/swng_sl_01.csv'))

ball_splitter_01 = pd.read_csv(Path('0_1/splitter/ball_sp_01.csv'))
call_splitter_01 = pd.read_csv(Path('0_1/splitter/call_sp_01.csv'))
foul_splitter_01 = pd.read_csv(Path('0_1/splitter/foul_sp_01.csv'))
hbyp_splitter_01 = pd.read_csv(Path('0_1/splitter/hbyp_sp_01.csv'))
play_splitter_01 = pd.read_csv(Path('0_1/splitter/play_sp_01.csv'))
swng_splitter_01 = pd.read_csv(Path('0_1/splitter/swng_sp_01.csv'))
In [4]:
ball_changeup_02 = pd.read_csv(Path('0_2/changeup/ball_ch_02.csv'))
call_changeup_02 = pd.read_csv(Path('0_2/changeup/call_ch_02.csv'))
foul_changeup_02 = pd.read_csv(Path('0_2/changeup/foul_ch_02.csv'))
hbyp_changeup_02 = pd.read_csv(Path('0_2/changeup/hbyp_ch_02.csv'))
play_changeup_02 = pd.read_csv(Path('0_2/changeup/play_ch_02.csv'))
swng_changeup_02 = pd.read_csv(Path('0_2/changeup/swng_ch_02.csv'))

ball_curveball_02 = pd.read_csv(Path('0_2/curveball/ball_cb_02.csv'))
call_curveball_02 = pd.read_csv(Path('0_2/curveball/call_cb_02.csv'))
foul_curveball_02 = pd.read_csv(Path('0_2/curveball/foul_cb_02.csv'))
hbyp_curveball_02 = pd.read_csv(Path('0_2/curveball/hbyp_cb_02.csv'))
play_curveball_02 = pd.read_csv(Path('0_2/curveball/play_cb_02.csv'))
swng_curveball_02 = pd.read_csv(Path('0_2/curveball/swng_cb_02.csv'))

ball_cutter_02 = pd.read_csv(Path('0_2/cutter/ball_ct_02.csv'))
call_cutter_02 = pd.read_csv(Path('0_2/cutter/call_ct_02.csv'))
foul_cutter_02 = pd.read_csv(Path('0_2/cutter/foul_ct_02.csv'))
hbyp_cutter_02 = pd.read_csv(Path('0_2/cutter/hbyp_ct_02.csv'))
play_cutter_02 = pd.read_csv(Path('0_2/cutter/play_ct_02.csv'))
swng_cutter_02 = pd.read_csv(Path('0_2/cutter/swng_ct_02.csv'))

ball_fastball_02 = pd.read_csv(Path('0_2/fastball/ball_fb_02.csv'))
call_fastball_02 = pd.read_csv(Path('0_2/fastball/call_fb_02.csv'))
foul_fastball_02 = pd.read_csv(Path('0_2/fastball/foul_fb_02.csv'))
hbyp_fastball_02 = pd.read_csv(Path('0_2/fastball/hbyp_fb_02.csv'))
play_fastball_02 = pd.read_csv(Path('0_2/fastball/play_fb_02.csv'))
swng_fastball_02 = pd.read_csv(Path('0_2/fastball/swng_fb_02.csv'))

ball_slider_02 = pd.read_csv(Path('0_2/slider/ball_sl_02.csv'))
call_slider_02 = pd.read_csv(Path('0_2/slider/call_sl_02.csv'))
foul_slider_02 = pd.read_csv(Path('0_2/slider/foul_sl_02.csv'))
hbyp_slider_02 = pd.read_csv(Path('0_2/slider/hbyp_sl_02.csv'))
play_slider_02 = pd.read_csv(Path('0_2/slider/play_sl_02.csv'))
swng_slider_02 = pd.read_csv(Path('0_2/slider/swng_sl_02.csv'))

ball_splitter_02 = pd.read_csv(Path('0_2/splitter/ball_sp_02.csv'))
call_splitter_02 = pd.read_csv(Path('0_2/splitter/call_sp_02.csv'))
foul_splitter_02 = pd.read_csv(Path('0_2/splitter/foul_sp_02.csv'))
hbyp_splitter_02 = pd.read_csv(Path('0_2/splitter/hbyp_sp_02.csv'))
play_splitter_02 = pd.read_csv(Path('0_2/splitter/play_sp_02.csv'))
swng_splitter_02 = pd.read_csv(Path('0_2/splitter/swng_sp_02.csv'))
In [5]:
ball_changeup_10 = pd.read_csv(Path('1_0/changeup/ball_ch_10.csv'))
call_changeup_10 = pd.read_csv(Path('1_0/changeup/call_ch_10.csv'))
foul_changeup_10 = pd.read_csv(Path('1_0/changeup/foul_ch_10.csv'))
hbyp_changeup_10 = pd.read_csv(Path('1_0/changeup/hbyp_ch_10.csv'))
play_changeup_10 = pd.read_csv(Path('1_0/changeup/play_ch_10.csv'))
swng_changeup_10 = pd.read_csv(Path('1_0/changeup/swng_ch_10.csv'))

ball_curveball_10 = pd.read_csv(Path('1_0/curveball/ball_cb_10.csv'))
call_curveball_10 = pd.read_csv(Path('1_0/curveball/call_cb_10.csv'))
foul_curveball_10 = pd.read_csv(Path('1_0/curveball/foul_cb_10.csv'))
hbyp_curveball_10 = pd.read_csv(Path('1_0/curveball/hbyp_cb_10.csv'))
play_curveball_10 = pd.read_csv(Path('1_0/curveball/play_cb_10.csv'))
swng_curveball_10 = pd.read_csv(Path('1_0/curveball/swng_cb_10.csv'))

ball_cutter_10 = pd.read_csv(Path('1_0/cutter/ball_ct_10.csv'))
call_cutter_10 = pd.read_csv(Path('1_0/cutter/call_ct_10.csv'))
foul_cutter_10 = pd.read_csv(Path('1_0/cutter/foul_ct_10.csv'))
hbyp_cutter_10 = pd.read_csv(Path('1_0/cutter/hbyp_ct_10.csv'))
play_cutter_10 = pd.read_csv(Path('1_0/cutter/play_ct_10.csv'))
swng_cutter_10 = pd.read_csv(Path('1_0/cutter/swng_ct_10.csv'))

ball_fastball_10 = pd.read_csv(Path('1_0/fastball/ball_fb_10.csv'))
call_fastball_10 = pd.read_csv(Path('1_0/fastball/call_fb_10.csv'))
foul_fastball_10 = pd.read_csv(Path('1_0/fastball/foul_fb_10.csv'))
hbyp_fastball_10 = pd.read_csv(Path('1_0/fastball/hbyp_fb_10.csv'))
play_fastball_10 = pd.read_csv(Path('1_0/fastball/play_fb_10.csv'))
swng_fastball_10 = pd.read_csv(Path('1_0/fastball/swng_fb_10.csv'))

ball_slider_10 = pd.read_csv(Path('1_0/slider/ball_sl_10.csv'))
call_slider_10 = pd.read_csv(Path('1_0/slider/call_sl_10.csv'))
foul_slider_10 = pd.read_csv(Path('1_0/slider/foul_sl_10.csv'))
hbyp_slider_10 = pd.read_csv(Path('1_0/slider/hbyp_sl_10.csv'))
play_slider_10 = pd.read_csv(Path('1_0/slider/play_sl_10.csv'))
swng_slider_10 = pd.read_csv(Path('1_0/slider/swng_sl_10.csv'))

ball_splitter_10 = pd.read_csv(Path('1_0/splitter/ball_sp_10.csv'))
call_splitter_10 = pd.read_csv(Path('1_0/splitter/call_sp_10.csv'))
foul_splitter_10 = pd.read_csv(Path('1_0/splitter/foul_sp_10.csv'))
hbyp_splitter_10 = pd.read_csv(Path('1_0/splitter/hbyp_sp_10.csv'))
play_splitter_10 = pd.read_csv(Path('1_0/splitter/play_sp_10.csv'))
swng_splitter_10 = pd.read_csv(Path('1_0/splitter/swng_sp_10.csv'))
In [6]:
ball_changeup_11 = pd.read_csv(Path('1_1/changeup/ball_ch_11.csv'))
call_changeup_11 = pd.read_csv(Path('1_1/changeup/call_ch_11.csv'))
foul_changeup_11 = pd.read_csv(Path('1_1/changeup/foul_ch_11.csv'))
hbyp_changeup_11 = pd.read_csv(Path('1_1/changeup/hbyp_ch_11.csv'))
play_changeup_11 = pd.read_csv(Path('1_1/changeup/play_ch_11.csv'))
swng_changeup_11 = pd.read_csv(Path('1_1/changeup/swng_ch_11.csv'))

ball_curveball_11 = pd.read_csv(Path('1_1/curveball/ball_cb_11.csv'))
call_curveball_11 = pd.read_csv(Path('1_1/curveball/call_cb_11.csv'))
foul_curveball_11 = pd.read_csv(Path('1_1/curveball/foul_cb_11.csv'))
hbyp_curveball_11 = pd.read_csv(Path('1_1/curveball/hbyp_cb_11.csv'))
play_curveball_11 = pd.read_csv(Path('1_1/curveball/play_cb_11.csv'))
swng_curveball_11 = pd.read_csv(Path('1_1/curveball/swng_cb_11.csv'))

ball_cutter_11 = pd.read_csv(Path('1_1/cutter/ball_ct_11.csv'))
call_cutter_11 = pd.read_csv(Path('1_1/cutter/call_ct_11.csv'))
foul_cutter_11 = pd.read_csv(Path('1_1/cutter/foul_ct_11.csv'))
hbyp_cutter_11 = pd.read_csv(Path('1_1/cutter/hbyp_ct_11.csv'))
play_cutter_11 = pd.read_csv(Path('1_1/cutter/play_ct_11.csv'))
swng_cutter_11 = pd.read_csv(Path('1_1/cutter/swng_ct_11.csv'))

ball_fastball_11 = pd.read_csv(Path('1_1/fastball/ball_fb_11.csv'))
call_fastball_11 = pd.read_csv(Path('1_1/fastball/call_fb_11.csv'))
foul_fastball_11 = pd.read_csv(Path('1_1/fastball/foul_fb_11.csv'))
hbyp_fastball_11 = pd.read_csv(Path('1_1/fastball/hbyp_fb_11.csv'))
play_fastball_11 = pd.read_csv(Path('1_1/fastball/play_fb_11.csv'))
swng_fastball_11 = pd.read_csv(Path('1_1/fastball/swng_fb_11.csv'))

ball_slider_11 = pd.read_csv(Path('1_1/slider/ball_sl_11.csv'))
call_slider_11 = pd.read_csv(Path('1_1/slider/call_sl_11.csv'))
foul_slider_11 = pd.read_csv(Path('1_1/slider/foul_sl_11.csv'))
hbyp_slider_11 = pd.read_csv(Path('1_1/slider/hbyp_sl_11.csv'))
play_slider_11 = pd.read_csv(Path('1_1/slider/play_sl_11.csv'))
swng_slider_11 = pd.read_csv(Path('1_1/slider/swng_sl_11.csv'))

ball_splitter_11 = pd.read_csv(Path('1_1/splitter/ball_sp_11.csv'))
call_splitter_11 = pd.read_csv(Path('1_1/splitter/call_sp_11.csv'))
foul_splitter_11 = pd.read_csv(Path('1_1/splitter/foul_sp_11.csv'))
hbyp_splitter_11 = pd.read_csv(Path('1_1/splitter/hbyp_sp_11.csv'))
play_splitter_11 = pd.read_csv(Path('1_1/splitter/play_sp_11.csv'))
swng_splitter_11 = pd.read_csv(Path('1_1/splitter/swng_sp_11.csv'))
In [7]:
ball_changeup_12 = pd.read_csv(Path('1_2/changeup/ball_ch_12.csv'))
call_changeup_12 = pd.read_csv(Path('1_2/changeup/call_ch_12.csv'))
foul_changeup_12 = pd.read_csv(Path('1_2/changeup/foul_ch_12.csv'))
hbyp_changeup_12 = pd.read_csv(Path('1_2/changeup/hbyp_ch_12.csv'))
play_changeup_12 = pd.read_csv(Path('1_2/changeup/play_ch_12.csv'))
swng_changeup_12 = pd.read_csv(Path('1_2/changeup/swng_ch_12.csv'))

ball_curveball_12 = pd.read_csv(Path('1_2/curveball/ball_cb_12.csv'))
call_curveball_12 = pd.read_csv(Path('1_2/curveball/call_cb_12.csv'))
foul_curveball_12 = pd.read_csv(Path('1_2/curveball/foul_cb_12.csv'))
hbyp_curveball_12 = pd.read_csv(Path('1_2/curveball/hbyp_cb_12.csv'))
play_curveball_12 = pd.read_csv(Path('1_2/curveball/play_cb_12.csv'))
swng_curveball_12 = pd.read_csv(Path('1_2/curveball/swng_cb_12.csv'))

ball_cutter_12 = pd.read_csv(Path('1_2/cutter/ball_ct_12.csv'))
call_cutter_12 = pd.read_csv(Path('1_2/cutter/call_ct_12.csv'))
foul_cutter_12 = pd.read_csv(Path('1_2/cutter/foul_ct_12.csv'))
hbyp_cutter_12 = pd.read_csv(Path('1_2/cutter/hbyp_ct_12.csv'))
play_cutter_12 = pd.read_csv(Path('1_2/cutter/play_ct_12.csv'))
swng_cutter_12 = pd.read_csv(Path('1_2/cutter/swng_ct_12.csv'))

ball_fastball_12 = pd.read_csv(Path('1_2/fastball/ball_fb_12.csv'))
call_fastball_12 = pd.read_csv(Path('1_2/fastball/call_fb_12.csv'))
foul_fastball_12 = pd.read_csv(Path('1_2/fastball/foul_fb_12.csv'))
hbyp_fastball_12 = pd.read_csv(Path('1_2/fastball/hbyp_fb_12.csv'))
play_fastball_12 = pd.read_csv(Path('1_2/fastball/play_fb_12.csv'))
swng_fastball_12 = pd.read_csv(Path('1_2/fastball/swng_fb_12.csv'))

ball_slider_12 = pd.read_csv(Path('1_2/slider/ball_sl_12.csv'))
call_slider_12 = pd.read_csv(Path('1_2/slider/call_sl_12.csv'))
foul_slider_12 = pd.read_csv(Path('1_2/slider/foul_sl_12.csv'))
hbyp_slider_12 = pd.read_csv(Path('1_2/slider/hbyp_sl_12.csv'))
play_slider_12 = pd.read_csv(Path('1_2/slider/play_sl_12.csv'))
swng_slider_12 = pd.read_csv(Path('1_2/slider/swng_sl_12.csv'))

ball_splitter_12 = pd.read_csv(Path('1_2/splitter/ball_sp_12.csv'))
call_splitter_12 = pd.read_csv(Path('1_2/splitter/call_sp_12.csv'))
foul_splitter_12 = pd.read_csv(Path('1_2/splitter/foul_sp_12.csv'))
hbyp_splitter_12 = pd.read_csv(Path('1_2/splitter/hbyp_sp_12.csv'))
play_splitter_12 = pd.read_csv(Path('1_2/splitter/play_sp_12.csv'))
swng_splitter_12 = pd.read_csv(Path('1_2/splitter/swng_sp_12.csv'))
In [8]:
ball_changeup_20 = pd.read_csv(Path('2_0/changeup/ball_ch_20.csv'))
call_changeup_20 = pd.read_csv(Path('2_0/changeup/call_ch_20.csv'))
foul_changeup_20 = pd.read_csv(Path('2_0/changeup/foul_ch_20.csv'))
hbyp_changeup_20 = pd.read_csv(Path('2_0/changeup/hbyp_ch_20.csv'))
play_changeup_20 = pd.read_csv(Path('2_0/changeup/play_ch_20.csv'))
swng_changeup_20 = pd.read_csv(Path('2_0/changeup/swng_ch_20.csv'))

ball_curveball_20 = pd.read_csv(Path('2_0/curveball/ball_cb_20.csv'))
call_curveball_20 = pd.read_csv(Path('2_0/curveball/call_cb_20.csv'))
foul_curveball_20 = pd.read_csv(Path('2_0/curveball/foul_cb_20.csv'))
hbyp_curveball_20 = pd.read_csv(Path('2_0/curveball/hbyp_cb_20.csv'))
play_curveball_20 = pd.read_csv(Path('2_0/curveball/play_cb_20.csv'))
swng_curveball_20 = pd.read_csv(Path('2_0/curveball/swng_cb_20.csv'))

ball_cutter_20 = pd.read_csv(Path('2_0/cutter/ball_ct_20.csv'))
call_cutter_20 = pd.read_csv(Path('2_0/cutter/call_ct_20.csv'))
foul_cutter_20 = pd.read_csv(Path('2_0/cutter/foul_ct_20.csv'))
hbyp_cutter_20 = pd.read_csv(Path('2_0/cutter/hbyp_ct_20.csv'))
play_cutter_20 = pd.read_csv(Path('2_0/cutter/play_ct_20.csv'))
swng_cutter_20 = pd.read_csv(Path('2_0/cutter/swng_ct_20.csv'))

ball_fastball_20 = pd.read_csv(Path('2_0/fastball/ball_fb_20.csv'))
call_fastball_20 = pd.read_csv(Path('2_0/fastball/call_fb_20.csv'))
foul_fastball_20 = pd.read_csv(Path('2_0/fastball/foul_fb_20.csv'))
hbyp_fastball_20 = pd.read_csv(Path('2_0/fastball/hbyp_fb_20.csv'))
play_fastball_20 = pd.read_csv(Path('2_0/fastball/play_fb_20.csv'))
swng_fastball_20 = pd.read_csv(Path('2_0/fastball/swng_fb_20.csv'))

ball_slider_20 = pd.read_csv(Path('2_0/slider/ball_sl_20.csv'))
call_slider_20 = pd.read_csv(Path('2_0/slider/call_sl_20.csv'))
foul_slider_20 = pd.read_csv(Path('2_0/slider/foul_sl_20.csv'))
hbyp_slider_20 = pd.read_csv(Path('2_0/slider/hbyp_sl_20.csv'))
play_slider_20 = pd.read_csv(Path('2_0/slider/play_sl_20.csv'))
swng_slider_20 = pd.read_csv(Path('2_0/slider/swng_sl_20.csv'))

ball_splitter_20 = pd.read_csv(Path('2_0/splitter/ball_sp_20.csv'))
call_splitter_20 = pd.read_csv(Path('2_0/splitter/call_sp_20.csv'))
foul_splitter_20 = pd.read_csv(Path('2_0/splitter/foul_sp_20.csv'))
play_splitter_20 = pd.read_csv(Path('2_0/splitter/play_sp_20.csv'))
swng_splitter_20 = pd.read_csv(Path('2_0/splitter/swng_sp_20.csv'))
In [9]:
ball_changeup_21 = pd.read_csv(Path('2_1/changeup/ball_ch_21.csv'))
call_changeup_21 = pd.read_csv(Path('2_1/changeup/call_ch_21.csv'))
foul_changeup_21 = pd.read_csv(Path('2_1/changeup/foul_ch_21.csv'))
hbyp_changeup_21 = pd.read_csv(Path('2_1/changeup/hbyp_ch_21.csv'))
play_changeup_21 = pd.read_csv(Path('2_1/changeup/play_ch_21.csv'))
swng_changeup_21 = pd.read_csv(Path('2_1/changeup/swng_ch_21.csv'))

ball_curveball_21 = pd.read_csv(Path('2_1/curveball/ball_cb_21.csv'))
call_curveball_21 = pd.read_csv(Path('2_1/curveball/call_cb_21.csv'))
foul_curveball_21 = pd.read_csv(Path('2_1/curveball/foul_cb_21.csv'))
hbyp_curveball_21 = pd.read_csv(Path('2_1/curveball/hbyp_cb_21.csv'))
play_curveball_21 = pd.read_csv(Path('2_1/curveball/play_cb_21.csv'))
swng_curveball_21 = pd.read_csv(Path('2_1/curveball/swng_cb_21.csv'))

ball_cutter_21 = pd.read_csv(Path('2_1/cutter/ball_ct_21.csv'))
call_cutter_21 = pd.read_csv(Path('2_1/cutter/call_ct_21.csv'))
foul_cutter_21 = pd.read_csv(Path('2_1/cutter/foul_ct_21.csv'))
hbyp_cutter_21 = pd.read_csv(Path('2_1/cutter/hbyp_ct_21.csv'))
play_cutter_21 = pd.read_csv(Path('2_1/cutter/play_ct_21.csv'))
swng_cutter_21 = pd.read_csv(Path('2_1/cutter/swng_ct_21.csv'))

ball_fastball_21 = pd.read_csv(Path('2_1/fastball/ball_fb_21.csv'))
call_fastball_21 = pd.read_csv(Path('2_1/fastball/call_fb_21.csv'))
foul_fastball_21 = pd.read_csv(Path('2_1/fastball/foul_fb_21.csv'))
hbyp_fastball_21 = pd.read_csv(Path('2_1/fastball/hbyp_fb_21.csv'))
play_fastball_21 = pd.read_csv(Path('2_1/fastball/play_fb_21.csv'))
swng_fastball_21 = pd.read_csv(Path('2_1/fastball/swng_fb_21.csv'))

ball_slider_21 = pd.read_csv(Path('2_1/slider/ball_sl_21.csv'))
call_slider_21 = pd.read_csv(Path('2_1/slider/call_sl_21.csv'))
foul_slider_21 = pd.read_csv(Path('2_1/slider/foul_sl_21.csv'))
hbyp_slider_21 = pd.read_csv(Path('2_1/slider/hbyp_sl_21.csv'))
play_slider_21 = pd.read_csv(Path('2_1/slider/play_sl_21.csv'))
swng_slider_21 = pd.read_csv(Path('2_1/slider/swng_sl_21.csv'))

ball_splitter_21 = pd.read_csv(Path('2_1/splitter/ball_sp_21.csv'))
call_splitter_21 = pd.read_csv(Path('2_1/splitter/call_sp_21.csv'))
foul_splitter_21 = pd.read_csv(Path('2_1/splitter/foul_sp_21.csv'))
play_splitter_21 = pd.read_csv(Path('2_1/splitter/play_sp_21.csv'))
swng_splitter_21 = pd.read_csv(Path('2_1/splitter/swng_sp_21.csv'))
In [10]:
ball_changeup_22 = pd.read_csv(Path('2_2/changeup/ball_ch_22.csv'))
call_changeup_22 = pd.read_csv(Path('2_2/changeup/call_ch_22.csv'))
foul_changeup_22 = pd.read_csv(Path('2_2/changeup/foul_ch_22.csv'))
hbyp_changeup_22 = pd.read_csv(Path('2_2/changeup/hbyp_ch_22.csv'))
play_changeup_22 = pd.read_csv(Path('2_2/changeup/play_ch_22.csv'))
swng_changeup_22 = pd.read_csv(Path('2_2/changeup/swng_ch_22.csv'))

ball_curveball_22 = pd.read_csv(Path('2_2/curveball/ball_cb_22.csv'))
call_curveball_22 = pd.read_csv(Path('2_2/curveball/call_cb_22.csv'))
foul_curveball_22 = pd.read_csv(Path('2_2/curveball/foul_cb_22.csv'))
hbyp_curveball_22 = pd.read_csv(Path('2_2/curveball/hbyp_cb_22.csv'))
play_curveball_22 = pd.read_csv(Path('2_2/curveball/play_cb_22.csv'))
swng_curveball_22 = pd.read_csv(Path('2_2/curveball/swng_cb_22.csv'))

ball_cutter_22 = pd.read_csv(Path('2_2/cutter/ball_ct_22.csv'))
call_cutter_22 = pd.read_csv(Path('2_2/cutter/call_ct_22.csv'))
foul_cutter_22 = pd.read_csv(Path('2_2/cutter/foul_ct_22.csv'))
hbyp_cutter_22 = pd.read_csv(Path('2_2/cutter/hbyp_ct_22.csv'))
play_cutter_22 = pd.read_csv(Path('2_2/cutter/play_ct_22.csv'))
swng_cutter_22 = pd.read_csv(Path('2_2/cutter/swng_ct_22.csv'))

ball_fastball_22 = pd.read_csv(Path('2_2/fastball/ball_fb_22.csv'))
call_fastball_22 = pd.read_csv(Path('2_2/fastball/call_fb_22.csv'))
foul_fastball_22 = pd.read_csv(Path('2_2/fastball/foul_fb_22.csv'))
hbyp_fastball_22 = pd.read_csv(Path('2_2/fastball/hbyp_fb_22.csv'))
play_fastball_22 = pd.read_csv(Path('2_2/fastball/play_fb_22.csv'))
swng_fastball_22 = pd.read_csv(Path('2_2/fastball/swng_fb_22.csv'))

ball_slider_22 = pd.read_csv(Path('2_2/slider/ball_sl_22.csv'))
call_slider_22 = pd.read_csv(Path('2_2/slider/call_sl_22.csv'))
foul_slider_22 = pd.read_csv(Path('2_2/slider/foul_sl_22.csv'))
hbyp_slider_22 = pd.read_csv(Path('2_2/slider/hbyp_sl_22.csv'))
play_slider_22 = pd.read_csv(Path('2_2/slider/play_sl_22.csv'))
swng_slider_22 = pd.read_csv(Path('2_2/slider/swng_sl_22.csv'))

ball_splitter_22 = pd.read_csv(Path('2_2/splitter/ball_sp_22.csv'))
call_splitter_22 = pd.read_csv(Path('2_2/splitter/call_sp_22.csv'))
foul_splitter_22 = pd.read_csv(Path('2_2/splitter/foul_sp_22.csv'))
hbyp_splitter_22 = pd.read_csv(Path('2_2/splitter/hbyp_sp_22.csv'))
play_splitter_22 = pd.read_csv(Path('2_2/splitter/play_sp_22.csv'))
swng_splitter_22 = pd.read_csv(Path('2_2/splitter/swng_sp_22.csv'))
In [11]:
ball_changeup_30 = pd.read_csv(Path('3_0/changeup/ball_ch_30.csv'))
call_changeup_30 = pd.read_csv(Path('3_0/changeup/call_ch_30.csv'))
foul_changeup_30 = pd.read_csv(Path('3_0/changeup/foul_ch_30.csv'))
play_changeup_30 = pd.read_csv(Path('3_0/changeup/play_ch_30.csv'))
swng_changeup_30 = pd.read_csv(Path('3_0/changeup/swng_ch_30.csv'))

ball_curveball_30 = pd.read_csv(Path('3_0/curveball/ball_cb_30.csv'))
call_curveball_30 = pd.read_csv(Path('3_0/curveball/call_cb_30.csv'))
play_curveball_30 = pd.read_csv(Path('3_0/curveball/play_cb_30.csv'))
swng_curveball_30 = pd.read_csv(Path('3_0/curveball/swng_cb_30.csv'))

ball_cutter_30 = pd.read_csv(Path('3_0/cutter/ball_ct_30.csv'))
call_cutter_30 = pd.read_csv(Path('3_0/cutter/call_ct_30.csv'))
foul_cutter_30 = pd.read_csv(Path('3_0/cutter/foul_ct_30.csv'))
play_cutter_30 = pd.read_csv(Path('3_0/cutter/play_ct_30.csv'))
swng_cutter_30 = pd.read_csv(Path('3_0/cutter/swng_ct_30.csv'))

ball_fastball_30 = pd.read_csv(Path('3_0/fastball/ball_fb_30.csv'))
call_fastball_30 = pd.read_csv(Path('3_0/fastball/call_fb_30.csv'))
foul_fastball_30 = pd.read_csv(Path('3_0/fastball/foul_fb_30.csv'))
hbyp_fastball_30 = pd.read_csv(Path('3_0/fastball/hbyp_fb_30.csv'))
play_fastball_30 = pd.read_csv(Path('3_0/fastball/play_fb_30.csv'))
swng_fastball_30 = pd.read_csv(Path('3_0/fastball/swng_fb_30.csv'))

ball_slider_30 = pd.read_csv(Path('3_0/slider/ball_sl_30.csv'))
call_slider_30 = pd.read_csv(Path('3_0/slider/call_sl_30.csv'))
foul_slider_30 = pd.read_csv(Path('3_0/slider/foul_sl_30.csv'))
play_slider_30 = pd.read_csv(Path('3_0/slider/play_sl_30.csv'))
swng_slider_30 = pd.read_csv(Path('3_0/slider/swng_sl_30.csv'))

ball_splitter_30 = pd.read_csv(Path('3_0/splitter/ball_sp_30.csv'))
call_splitter_30 = pd.read_csv(Path('3_0/splitter/call_sp_30.csv'))
In [12]:
ball_changeup_31 = pd.read_csv(Path('3_1/changeup/ball_ch_31.csv'))
call_changeup_31 = pd.read_csv(Path('3_1/changeup/call_ch_31.csv'))
foul_changeup_31 = pd.read_csv(Path('3_1/changeup/foul_ch_31.csv'))
hbyp_changeup_31 = pd.read_csv(Path('3_1/changeup/hbyp_ch_31.csv'))
play_changeup_31 = pd.read_csv(Path('3_1/changeup/play_ch_31.csv'))
swng_changeup_31 = pd.read_csv(Path('3_1/changeup/swng_ch_31.csv'))

ball_curveball_31 = pd.read_csv(Path('3_1/curveball/ball_cb_31.csv'))
call_curveball_31 = pd.read_csv(Path('3_1/curveball/call_cb_31.csv'))
foul_curveball_31 = pd.read_csv(Path('3_1/curveball/foul_cb_31.csv'))
play_curveball_31 = pd.read_csv(Path('3_1/curveball/play_cb_31.csv'))
swng_curveball_31 = pd.read_csv(Path('3_1/curveball/swng_cb_31.csv'))

ball_cutter_31 = pd.read_csv(Path('3_1/cutter/ball_ct_31.csv'))
call_cutter_31 = pd.read_csv(Path('3_1/cutter/call_ct_31.csv'))
foul_cutter_31 = pd.read_csv(Path('3_1/cutter/foul_ct_31.csv'))
hbyp_cutter_31 = pd.read_csv(Path('3_1/cutter/hbyp_ct_31.csv'))
play_cutter_31 = pd.read_csv(Path('3_1/cutter/play_ct_31.csv'))
swng_cutter_31 = pd.read_csv(Path('3_1/cutter/swng_ct_31.csv'))

ball_fastball_31 = pd.read_csv(Path('3_1/fastball/ball_fb_31.csv'))
call_fastball_31 = pd.read_csv(Path('3_1/fastball/call_fb_31.csv'))
foul_fastball_31 = pd.read_csv(Path('3_1/fastball/foul_fb_31.csv'))
hbyp_fastball_31 = pd.read_csv(Path('3_1/fastball/hbyp_fb_31.csv'))
play_fastball_31 = pd.read_csv(Path('3_1/fastball/play_fb_31.csv'))
swng_fastball_31 = pd.read_csv(Path('3_1/fastball/swng_fb_31.csv'))

ball_slider_31 = pd.read_csv(Path('3_1/slider/ball_sl_31.csv'))
call_slider_31 = pd.read_csv(Path('3_1/slider/call_sl_31.csv'))
foul_slider_31 = pd.read_csv(Path('3_1/slider/foul_sl_31.csv'))
hbyp_slider_31 = pd.read_csv(Path('3_1/slider/hbyp_sl_31.csv'))
play_slider_31 = pd.read_csv(Path('3_1/slider/play_sl_31.csv'))
swng_slider_31 = pd.read_csv(Path('3_1/slider/swng_sl_31.csv'))

ball_splitter_31 = pd.read_csv(Path('3_1/splitter/ball_sp_31.csv'))
call_splitter_31 = pd.read_csv(Path('3_1/splitter/call_sp_31.csv'))
foul_splitter_31 = pd.read_csv(Path('3_1/splitter/foul_sp_31.csv'))
play_splitter_31 = pd.read_csv(Path('3_1/splitter/play_sp_31.csv'))
swng_splitter_31 = pd.read_csv(Path('3_1/splitter/swng_sp_31.csv'))
In [13]:
ball_changeup_32 = pd.read_csv(Path('3_2/changeup/ball_ch_32.csv'))
call_changeup_32 = pd.read_csv(Path('3_2/changeup/call_ch_32.csv'))
foul_changeup_32 = pd.read_csv(Path('3_2/changeup/foul_ch_32.csv'))
hbyp_changeup_32 = pd.read_csv(Path('3_2/changeup/hbyp_ch_32.csv'))
play_changeup_32 = pd.read_csv(Path('3_2/changeup/play_ch_32.csv'))
swng_changeup_32 = pd.read_csv(Path('3_2/changeup/swng_ch_32.csv'))

ball_curveball_32 = pd.read_csv(Path('3_2/curveball/ball_cb_32.csv'))
call_curveball_32 = pd.read_csv(Path('3_2/curveball/call_cb_32.csv'))
foul_curveball_32 = pd.read_csv(Path('3_2/curveball/foul_cb_32.csv'))
hbyp_curveball_32 = pd.read_csv(Path('3_2/curveball/hbyp_cb_32.csv'))
play_curveball_32 = pd.read_csv(Path('3_2/curveball/play_cb_32.csv'))
swng_curveball_32 = pd.read_csv(Path('3_2/curveball/swng_cb_32.csv'))

ball_cutter_32 = pd.read_csv(Path('3_2/cutter/ball_ct_32.csv'))
call_cutter_32 = pd.read_csv(Path('3_2/cutter/call_ct_32.csv'))
foul_cutter_32 = pd.read_csv(Path('3_2/cutter/foul_ct_32.csv'))
hbyp_cutter_32 = pd.read_csv(Path('3_2/cutter/hbyp_ct_32.csv'))
play_cutter_32 = pd.read_csv(Path('3_2/cutter/play_ct_32.csv'))
swng_cutter_32 = pd.read_csv(Path('3_2/cutter/swng_ct_32.csv'))

ball_fastball_32 = pd.read_csv(Path('3_2/fastball/ball_fb_32.csv'))
call_fastball_32 = pd.read_csv(Path('3_2/fastball/call_fb_32.csv'))
foul_fastball_32 = pd.read_csv(Path('3_2/fastball/foul_fb_32.csv'))
hbyp_fastball_32 = pd.read_csv(Path('3_2/fastball/hbyp_fb_32.csv'))
play_fastball_32 = pd.read_csv(Path('3_2/fastball/play_fb_32.csv'))
swng_fastball_32 = pd.read_csv(Path('3_2/fastball/swng_fb_32.csv'))

ball_slider_32 = pd.read_csv(Path('3_2/slider/ball_sl_32.csv'))
call_slider_32 = pd.read_csv(Path('3_2/slider/call_sl_32.csv'))
foul_slider_32 = pd.read_csv(Path('3_2/slider/foul_sl_32.csv'))
hbyp_slider_32 = pd.read_csv(Path('3_2/slider/hbyp_sl_32.csv'))
play_slider_32 = pd.read_csv(Path('3_2/slider/play_sl_32.csv'))
swng_slider_32 = pd.read_csv(Path('3_2/slider/swng_sl_32.csv'))

ball_splitter_32 = pd.read_csv(Path('3_2/splitter/ball_sp_32.csv'))
call_splitter_32 = pd.read_csv(Path('3_2/splitter/call_sp_32.csv'))
foul_splitter_32 = pd.read_csv(Path('3_2/splitter/foul_sp_32.csv'))
hbyp_splitter_32 = pd.read_csv(Path('3_2/splitter/hbyp_sp_32.csv'))
play_splitter_32 = pd.read_csv(Path('3_2/splitter/play_sp_32.csv'))
swng_splitter_32 = pd.read_csv(Path('3_2/splitter/swng_sp_32.csv'))
In [14]:
play_fastball_21
Out[14]:
pitches player_id player_name total_pitches pitch_percent ba iso babip slg woba ... batter_run_value_per_100 xobp xslg pitcher_run_value_per_100 xbadiff xobpdiff xslgdiff wobadiff swing_miss_percent arm_angle
0 30 663623 Irvin, Jake 3046 1.0 0.310 0.345 0.231 0.655 0.407 ... 7.186667 0.245 0.451 -7.186667 0.065 0.065 0.204 0.110 0 27.8
1 27 686613 Brown, Hunter 2889 0.9 0.333 0.222 0.308 0.556 0.377 ... 1.792593 0.309 0.509 -1.792593 0.024 0.024 0.047 0.027 0 58.6
2 26 642547 Peralta, Freddy 3066 0.8 0.308 0.385 0.217 0.692 0.420 ... 7.650000 0.309 0.552 -7.650000 -0.001 -0.001 0.140 0.050 0 38.6
3 24 669467 Pallante, Andre 1978 1.2 0.304 0.217 0.273 0.522 0.352 ... -4.825000 0.301 0.521 4.825000 0.003 0.003 0.001 -0.001 0 58.3
4 24 502043 Gibson, Kyle 2764 0.9 0.417 0.375 0.364 0.792 0.511 ... 1.133333 0.389 0.581 -1.133333 0.028 0.028 0.211 0.095 0 45.9
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
653 1 596001 Junis, Jakob 943 0.1 1.000 1.000 1.000 2.000 1.254 ... 58.500000 0.669 0.893 -58.500000 0.331 0.331 1.107 0.591 0 33.3
654 1 657265 Strzelecki, Peter 192 0.5 0.000 0.000 0.000 0.000 0.000 ... -58.200000 0.202 0.243 58.200000 -0.202 -0.202 -0.243 -0.184 0 14.7
655 1 607644 Means, John 320 0.3 1.000 1.000 1.000 2.000 1.254 ... 21.900000 0.500 0.966 -21.900000 0.500 0.500 1.034 0.642 0 48.2
656 1 622075 Almonte, Yency 267 0.4 0.000 0.000 0.000 0.000 0.000 ... -19.100000 0.691 2.102 19.100000 -0.691 -0.691 -2.102 -1.156 0 38.8
657 1 656793 Nelson, Nick 96 1.0 1.000 0.000 1.000 1.000 0.882 ... 43.600000 0.494 0.578 -43.600000 0.506 0.506 0.422 0.406 0 47.3

658 rows × 70 columns

In [15]:
play_fastball_21.columns
Out[15]:
Index(['pitches', 'player_id', 'player_name', 'total_pitches', 'pitch_percent',
       'ba', 'iso', 'babip', 'slg', 'woba', 'xwoba', 'xba', 'hits', 'abs',
       'launch_speed', 'launch_angle', 'spin_rate', 'velocity',
       'effective_speed', 'whiffs', 'swings', 'takes', 'eff_min_vel',
       'release_extension', 'pos3_int_start_distance',
       'pos4_int_start_distance', 'pos5_int_start_distance',
       'pos6_int_start_distance', 'pos7_int_start_distance',
       'pos8_int_start_distance', 'pos9_int_start_distance', 'pitcher_run_exp',
       'run_exp', 'bat_speed', 'swing_length', 'pa', 'bip', 'singles',
       'doubles', 'triples', 'hrs', 'so', 'k_percent', 'bb', 'bb_percent',
       'api_break_z_with_gravity', 'api_break_z_induced', 'api_break_x_arm',
       'api_break_x_batter_in', 'hyper_speed', 'bbdist', 'hardhit_percent',
       'barrels_per_bbe_percent', 'barrels_per_pa_percent', 'release_pos_z',
       'release_pos_x', 'plate_x', 'plate_z', 'obp', 'barrels_total',
       'batter_run_value_per_100', 'xobp', 'xslg', 'pitcher_run_value_per_100',
       'xbadiff', 'xobpdiff', 'xslgdiff', 'wobadiff', 'swing_miss_percent',
       'arm_angle'],
      dtype='object')
In [16]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
outcomes = ['ball', 'call', 'foul', 'hbyp', 'play', 'swng']
counts = ['0_0', '0_1', '0_2', '1_0', '1_1', '1_2', '2_0', '2_1', '2_2', '3_0', '3_1', '3_2']
outcome_mapping = {
    'ball': 'ball',
    'call': 'called_strike',
    'foul': 'foul',
    'hbyp': 'hit_by_pitch',
    'play': 'ball_in_play',
    'swng': 'swinging_strike'
}
pitch_abbreviation = {
    'changeup': 'ch',
    'curveball': 'cb',
    'cutter': 'ct',
    'fastball': 'fb',
    'slider': 'sl',
    'splitter': 'sp'
}

count_pitch_type_dfs = {}

for count in counts:
    count_specific_dfs = {}
    for pitch_type in pitch_types:
        pitch_type_specific_dfs = []
        for outcome in outcomes:
            # Use pitch_abbreviation to construct the file path
            abbreviation = pitch_abbreviation[pitch_type]
            file_path = Path(f"{count}/{pitch_type}/{outcome}_{abbreviation}_{count.replace('_', '')}.csv")
            if file_path.exists():
                df = pd.read_csv(file_path)
                if not df.empty:
                    df['count'] = count
                    df['pitch_type'] = pitch_type
                    df['outcome'] = outcome_mapping.get(outcome, 'unknown_outcome')
                    pitch_type_specific_dfs.append(df)
                else:
                    print(f"Empty file: {file_path}")
            else:
                print(f"File not found: {file_path}")
        if pitch_type_specific_dfs:
            count_specific_dfs[pitch_type] = pd.concat(pitch_type_specific_dfs, ignore_index=True)
        else:
            count_specific_dfs[pitch_type] = pd.DataFrame(columns=['count', 'pitch_type', 'outcome'])
    count_pitch_type_dfs[count] = count_specific_dfs

# Validation Summary
for count, pitch_types in count_pitch_type_dfs.items():
    for pitch_type, df in pitch_types.items():
        print(f"Count: {count}, Pitch Type: {pitch_type}, Rows: {len(df)}")
File not found: 2_0\splitter\hbyp_sp_20.csv
File not found: 2_1\splitter\hbyp_sp_21.csv
File not found: 3_0\changeup\hbyp_ch_30.csv
File not found: 3_0\curveball\foul_cb_30.csv
File not found: 3_0\curveball\hbyp_cb_30.csv
File not found: 3_0\cutter\hbyp_ct_30.csv
File not found: 3_0\slider\hbyp_sl_30.csv
File not found: 3_0\splitter\foul_sp_30.csv
File not found: 3_0\splitter\hbyp_sp_30.csv
File not found: 3_0\splitter\play_sp_30.csv
File not found: 3_0\splitter\swng_sp_30.csv
File not found: 3_1\curveball\hbyp_cb_31.csv
File not found: 3_1\splitter\hbyp_sp_31.csv
Count: 0_0, Pitch Type: changeup, Rows: 1771
Count: 0_0, Pitch Type: curveball, Rows: 1607
Count: 0_0, Pitch Type: cutter, Rows: 1362
Count: 0_0, Pitch Type: fastball, Rows: 3946
Count: 0_0, Pitch Type: slider, Rows: 3169
Count: 0_0, Pitch Type: splitter, Rows: 390
Count: 0_1, Pitch Type: changeup, Rows: 1890
Count: 0_1, Pitch Type: curveball, Rows: 1389
Count: 0_1, Pitch Type: cutter, Rows: 1204
Count: 0_1, Pitch Type: fastball, Rows: 3611
Count: 0_1, Pitch Type: slider, Rows: 3006
Count: 0_1, Pitch Type: splitter, Rows: 437
Count: 0_2, Pitch Type: changeup, Rows: 1302
Count: 0_2, Pitch Type: curveball, Rows: 1109
Count: 0_2, Pitch Type: cutter, Rows: 664
Count: 0_2, Pitch Type: fastball, Rows: 2957
Count: 0_2, Pitch Type: slider, Rows: 2499
Count: 0_2, Pitch Type: splitter, Rows: 366
Count: 1_0, Pitch Type: changeup, Rows: 1650
Count: 1_0, Pitch Type: curveball, Rows: 1067
Count: 1_0, Pitch Type: cutter, Rows: 1165
Count: 1_0, Pitch Type: fastball, Rows: 3523
Count: 1_0, Pitch Type: slider, Rows: 2663
Count: 1_0, Pitch Type: splitter, Rows: 349
Count: 1_1, Pitch Type: changeup, Rows: 1818
Count: 1_1, Pitch Type: curveball, Rows: 1266
Count: 1_1, Pitch Type: cutter, Rows: 1156
Count: 1_1, Pitch Type: fastball, Rows: 3534
Count: 1_1, Pitch Type: slider, Rows: 2855
Count: 1_1, Pitch Type: splitter, Rows: 421
Count: 1_2, Pitch Type: changeup, Rows: 1594
Count: 1_2, Pitch Type: curveball, Rows: 1294
Count: 1_2, Pitch Type: cutter, Rows: 871
Count: 1_2, Pitch Type: fastball, Rows: 3319
Count: 1_2, Pitch Type: slider, Rows: 2743
Count: 1_2, Pitch Type: splitter, Rows: 391
Count: 2_0, Pitch Type: changeup, Rows: 866
Count: 2_0, Pitch Type: curveball, Rows: 404
Count: 2_0, Pitch Type: cutter, Rows: 808
Count: 2_0, Pitch Type: fastball, Rows: 3029
Count: 2_0, Pitch Type: slider, Rows: 1448
Count: 2_0, Pitch Type: splitter, Rows: 153
Count: 2_1, Pitch Type: changeup, Rows: 1284
Count: 2_1, Pitch Type: curveball, Rows: 821
Count: 2_1, Pitch Type: cutter, Rows: 984
Count: 2_1, Pitch Type: fastball, Rows: 3196
Count: 2_1, Pitch Type: slider, Rows: 2241
Count: 2_1, Pitch Type: splitter, Rows: 279
Count: 2_2, Pitch Type: changeup, Rows: 1522
Count: 2_2, Pitch Type: curveball, Rows: 1197
Count: 2_2, Pitch Type: cutter, Rows: 914
Count: 2_2, Pitch Type: fastball, Rows: 3302
Count: 2_2, Pitch Type: slider, Rows: 2615
Count: 2_2, Pitch Type: splitter, Rows: 379
Count: 3_0, Pitch Type: changeup, Rows: 73
Count: 3_0, Pitch Type: curveball, Rows: 22
Count: 3_0, Pitch Type: cutter, Rows: 188
Count: 3_0, Pitch Type: fastball, Rows: 1674
Count: 3_0, Pitch Type: slider, Rows: 158
Count: 3_0, Pitch Type: splitter, Rows: 13
Count: 3_1, Pitch Type: changeup, Rows: 550
Count: 3_1, Pitch Type: curveball, Rows: 237
Count: 3_1, Pitch Type: cutter, Rows: 646
Count: 3_1, Pitch Type: fastball, Rows: 2783
Count: 3_1, Pitch Type: slider, Rows: 1096
Count: 3_1, Pitch Type: splitter, Rows: 103
Count: 3_2, Pitch Type: changeup, Rows: 1060
Count: 3_2, Pitch Type: curveball, Rows: 720
Count: 3_2, Pitch Type: cutter, Rows: 851
Count: 3_2, Pitch Type: fastball, Rows: 3122
Count: 3_2, Pitch Type: slider, Rows: 2083
Count: 3_2, Pitch Type: splitter, Rows: 264
In [17]:
changeup_00_df = count_pitch_type_dfs['0_0']['changeup']
changeup_01_df = count_pitch_type_dfs['0_1']['changeup']
changeup_02_df = count_pitch_type_dfs['0_2']['changeup']
changeup_10_df = count_pitch_type_dfs['1_0']['changeup']
changeup_11_df = count_pitch_type_dfs['1_1']['changeup']
changeup_12_df = count_pitch_type_dfs['1_2']['changeup']
changeup_20_df = count_pitch_type_dfs['2_0']['changeup']
changeup_21_df = count_pitch_type_dfs['2_1']['changeup']
changeup_22_df = count_pitch_type_dfs['2_2']['changeup']
changeup_30_df = count_pitch_type_dfs['3_0']['changeup']
changeup_31_df = count_pitch_type_dfs['3_1']['changeup']
changeup_32_df = count_pitch_type_dfs['3_2']['changeup']
In [18]:
curveball_00_df = count_pitch_type_dfs['0_0']['curveball']
curveball_01_df = count_pitch_type_dfs['0_1']['curveball']
curveball_02_df = count_pitch_type_dfs['0_2']['curveball']
curveball_10_df = count_pitch_type_dfs['1_0']['curveball']
curveball_11_df = count_pitch_type_dfs['1_1']['curveball']
curveball_12_df = count_pitch_type_dfs['1_2']['curveball']
curveball_20_df = count_pitch_type_dfs['2_0']['curveball']
curveball_21_df = count_pitch_type_dfs['2_1']['curveball']
curveball_22_df = count_pitch_type_dfs['2_2']['curveball']
curveball_30_df = count_pitch_type_dfs['3_0']['curveball']
curveball_31_df = count_pitch_type_dfs['3_1']['curveball']
curveball_32_df = count_pitch_type_dfs['3_2']['curveball']
In [19]:
cutter_00_df = count_pitch_type_dfs['0_0']['cutter']
cutter_01_df = count_pitch_type_dfs['0_1']['cutter']
cutter_02_df = count_pitch_type_dfs['0_2']['cutter']
cutter_10_df = count_pitch_type_dfs['1_0']['cutter']
cutter_11_df = count_pitch_type_dfs['1_1']['cutter']
cutter_12_df = count_pitch_type_dfs['1_2']['cutter']
cutter_20_df = count_pitch_type_dfs['2_0']['cutter']
cutter_21_df = count_pitch_type_dfs['2_1']['cutter']
cutter_22_df = count_pitch_type_dfs['2_2']['cutter']
cutter_30_df = count_pitch_type_dfs['3_0']['cutter']
cutter_31_df = count_pitch_type_dfs['3_1']['cutter']
cutter_32_df = count_pitch_type_dfs['3_2']['cutter']
In [20]:
fastball_00_df = count_pitch_type_dfs['0_0']['fastball']
fastball_01_df = count_pitch_type_dfs['0_1']['fastball']
fastball_02_df = count_pitch_type_dfs['0_2']['fastball']
fastball_10_df = count_pitch_type_dfs['1_0']['fastball']
fastball_11_df = count_pitch_type_dfs['1_1']['fastball']
fastball_12_df = count_pitch_type_dfs['1_2']['fastball']
fastball_20_df = count_pitch_type_dfs['2_0']['fastball']
fastball_21_df = count_pitch_type_dfs['2_1']['fastball']
fastball_22_df = count_pitch_type_dfs['2_2']['fastball']
fastball_30_df = count_pitch_type_dfs['3_0']['fastball']
fastball_31_df = count_pitch_type_dfs['3_1']['fastball']
fastball_32_df = count_pitch_type_dfs['3_2']['fastball']
In [21]:
slider_00_df = count_pitch_type_dfs['0_0']['slider']
slider_01_df = count_pitch_type_dfs['0_1']['slider']
slider_02_df = count_pitch_type_dfs['0_2']['slider']
slider_10_df = count_pitch_type_dfs['1_0']['slider']
slider_11_df = count_pitch_type_dfs['1_1']['slider']
slider_12_df = count_pitch_type_dfs['1_2']['slider']
slider_20_df = count_pitch_type_dfs['2_0']['slider']
slider_21_df = count_pitch_type_dfs['2_1']['slider']
slider_22_df = count_pitch_type_dfs['2_2']['slider']
slider_30_df = count_pitch_type_dfs['3_0']['slider']
slider_31_df = count_pitch_type_dfs['3_1']['slider']
slider_32_df = count_pitch_type_dfs['3_2']['slider']
In [22]:
splitter_00_df = count_pitch_type_dfs['0_0']['splitter']
splitter_01_df = count_pitch_type_dfs['0_1']['splitter']
splitter_02_df = count_pitch_type_dfs['0_2']['splitter']
splitter_10_df = count_pitch_type_dfs['1_0']['splitter']
splitter_11_df = count_pitch_type_dfs['1_1']['splitter']
splitter_12_df = count_pitch_type_dfs['1_2']['splitter']
splitter_20_df = count_pitch_type_dfs['2_0']['splitter']
splitter_21_df = count_pitch_type_dfs['2_1']['splitter']
splitter_22_df = count_pitch_type_dfs['2_2']['splitter']
splitter_30_df = count_pitch_type_dfs['3_0']['splitter']
splitter_31_df = count_pitch_type_dfs['3_1']['splitter']
splitter_32_df = count_pitch_type_dfs['3_2']['splitter']
In [23]:
changeup_00_df
Out[23]:
pitches player_id player_name total_pitches pitch_percent ba iso babip slg woba ... pitcher_run_value_per_100 xbadiff xobpdiff xslgdiff wobadiff swing_miss_percent arm_angle count pitch_type outcome
0 107 542881 Anderson, Tyler 2914 3.7 NaN NaN NaN NaN NaN ... -3.883178 NaN NaN NaN NaN NaN 62.7 0_0 changeup ball
1 87 661563 Gil, Luis 2664 3.3 NaN NaN NaN NaN NaN ... -3.588506 NaN NaN NaN NaN NaN 27.4 0_0 changeup ball
2 62 678394 Bello, Brayan 2710 2.3 NaN NaN NaN NaN NaN ... -3.440323 NaN NaN NaN NaN NaN 27.0 0_0 changeup ball
3 60 670950 Richards, Trevor 1182 5.1 NaN NaN NaN NaN NaN ... -3.540000 NaN NaN NaN NaN NaN 48.2 0_0 changeup ball
4 58 650911 Sánchez, Cristopher 2797 2.1 NaN NaN NaN NaN NaN ... -4.220690 NaN NaN NaN NaN NaN 31.0 0_0 changeup ball
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
1766 1 668909 Williams, Gavin 1368 0.1 NaN NaN NaN NaN NaN ... 2.300000 NaN NaN NaN NaN 100.0 35.0 0_0 changeup swinging_strike
1767 1 681190 Vásquez, Randy 1687 0.1 NaN NaN NaN NaN NaN ... 4.700000 NaN NaN NaN NaN 100.0 35.8 0_0 changeup swinging_strike
1768 1 687362 Gillispie, Connor 138 0.7 NaN NaN NaN NaN NaN ... 2.300000 NaN NaN NaN NaN 100.0 38.1 0_0 changeup swinging_strike
1769 1 572020 Paxton, James 1708 0.1 NaN NaN NaN NaN NaN ... 3.300000 NaN NaN NaN NaN 100.0 45.4 0_0 changeup swinging_strike
1770 1 650671 Quijada, José 379 0.3 NaN NaN NaN NaN NaN ... 8.100000 NaN NaN NaN NaN 100.0 35.4 0_0 changeup swinging_strike

1771 rows × 73 columns

In [24]:
fastball_00_df
Out[24]:
pitches player_id player_name total_pitches pitch_percent ba iso babip slg woba ... pitcher_run_value_per_100 xbadiff xobpdiff xslgdiff wobadiff swing_miss_percent arm_angle count pitch_type outcome
0 180 663903 Singer, Brady 2967 6.1 NaN NaN NaN NaN NaN ... -3.403333 NaN NaN NaN NaN NaN 27.0 0_0 fastball ball
1 176 621244 Berríos, José 2914 6.0 NaN NaN NaN NaN NaN ... -3.357386 NaN NaN NaN NaN NaN 40.4 0_0 fastball ball
2 171 622491 Castillo, Luis 2859 6.0 NaN NaN NaN NaN NaN ... -3.196491 NaN NaN NaN NaN NaN 17.0 0_0 fastball ball
3 165 663623 Irvin, Jake 3046 5.4 NaN NaN NaN NaN NaN ... -3.430303 NaN NaN NaN NaN NaN 30.1 0_0 fastball ball
4 162 682243 Miller, Bryce 2749 5.9 NaN NaN NaN NaN NaN ... -3.119136 NaN NaN NaN NaN NaN 44.3 0_0 fastball ball
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
3941 1 676969 de Geus, Brett 194 0.5 NaN NaN NaN NaN NaN ... 3.900000 NaN NaN NaN NaN 100.0 32.7 0_0 fastball swinging_strike
3942 1 683618 Henriquez, Edgardo 59 1.7 NaN NaN NaN NaN NaN ... 3.900000 NaN NaN NaN NaN 100.0 46.3 0_0 fastball swinging_strike
3943 1 680694 Bradish, Kyle 674 0.1 NaN NaN NaN NaN NaN ... 4.700000 NaN NaN NaN NaN 100.0 57.8 0_0 fastball swinging_strike
3944 1 543238 Gose, Anthony 79 1.3 NaN NaN NaN NaN NaN ... 4.500000 NaN NaN NaN NaN 100.0 47.5 0_0 fastball swinging_strike
3945 1 680742 Bowlan, Jonathan 68 1.5 NaN NaN NaN NaN NaN ... 6.300000 NaN NaN NaN NaN 100.0 43.3 0_0 fastball swinging_strike

3946 rows × 73 columns

In [25]:
curveball_32_df
Out[25]:
pitches player_id player_name total_pitches pitch_percent ba iso babip slg woba ... pitcher_run_value_per_100 xbadiff xobpdiff xslgdiff wobadiff swing_miss_percent arm_angle count pitch_type outcome
0 21 450203 Morton, Charlie 2791 0.8 NaN NaN NaN NaN 0.689 ... -25.161905 NaN 0.0 NaN 0.0 NaN 20.7 3_2 curveball ball
1 17 664285 Valdez, Framber 2598 0.7 NaN NaN NaN NaN 0.689 ... -25.552941 NaN 0.0 NaN 0.0 NaN 43.3 3_2 curveball ball
2 12 668678 Gallen, Zac 2506 0.5 NaN NaN NaN NaN 0.689 ... -23.591667 NaN 0.0 NaN 0.0 NaN 42.7 3_2 curveball ball
3 11 605400 Nola, Aaron 3189 0.3 NaN NaN NaN NaN 0.689 ... -23.500000 NaN 0.0 NaN 0.0 NaN 21.8 3_2 curveball ball
4 10 572955 Johnson, Pierce 916 1.1 NaN NaN NaN NaN 0.689 ... -26.330000 NaN 0.0 NaN 0.0 NaN 38.8 3_2 curveball ball
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
715 1 680686 Gray, Josiah 176 0.6 0.0 0.0 NaN 0.0 0.000 ... 26.900000 NaN NaN NaN 0.0 100.0 33.4 3_2 curveball swinging_strike
716 1 624522 Thompson, Keegan 538 0.2 0.0 0.0 NaN 0.0 0.000 ... 29.900000 NaN NaN NaN 0.0 100.0 38.2 3_2 curveball swinging_strike
717 1 641329 Baker, Bryan 370 0.3 0.0 0.0 NaN 0.0 0.000 ... 21.000000 NaN NaN NaN 0.0 100.0 61.7 3_2 curveball swinging_strike
718 1 669467 Pallante, Andre 1978 0.1 0.0 0.0 NaN 0.0 0.000 ... 21.000000 NaN NaN NaN 0.0 100.0 62.1 3_2 curveball swinging_strike
719 1 676534 Faucher, Calvin 987 0.1 0.0 0.0 NaN 0.0 0.000 ... 12.500000 NaN NaN NaN 0.0 100.0 57.2 3_2 curveball swinging_strike

720 rows × 73 columns

In [26]:
print(f'Changeups on 0-0 count: {changeup_00_df["pitches"].sum()}')
print(f'Changeups on 0-1 count: {changeup_01_df["pitches"].sum()}') 
print(f'Changeups on 0-2 count: {changeup_02_df["pitches"].sum()}') 
print(f'Changeups on 1-0 count: {changeup_10_df["pitches"].sum()}') 
print(f'Changeups on 1-1 count: {changeup_11_df["pitches"].sum()}') 
print(f'Changeups on 1-2 count: {changeup_12_df["pitches"].sum()}')
print(f'Changeups on 2-0 count: {changeup_20_df["pitches"].sum()}')
print(f'Changeups on 2-1 count: {changeup_21_df["pitches"].sum()}')
print(f'Changeups on 2-2 count: {changeup_22_df["pitches"].sum()}')
print(f'Changeups on 3-0 count: {changeup_30_df["pitches"].sum()}')
print(f'Changeups on 3-1 count: {changeup_31_df["pitches"].sum()}')
print(f'Changeups on 3-2 count: {changeup_32_df["pitches"].sum()}')
print(f'Curveballs on 0-0 count: {curveball_00_df["pitches"].sum()}') 
print(f'Curveballs on 0-1 count: {curveball_01_df["pitches"].sum()}')
print(f'Curveballs on 0-2 count: {curveball_02_df["pitches"].sum()}')
print(f'Curveballs on 1-0 count: {curveball_10_df["pitches"].sum()}')
print(f'Curveballs on 1-1 count: {curveball_11_df["pitches"].sum()}')
print(f'Curveballs on 1-2 count: {curveball_12_df["pitches"].sum()}')
print(f'Curveballs on 2-0 count: {curveball_20_df["pitches"].sum()}')
print(f'Curveballs on 2-1 count: {curveball_21_df["pitches"].sum()}')
print(f'Curveballs on 2-2 count: {curveball_22_df["pitches"].sum()}')
print(f'Curveballs on 3-0 count: {curveball_30_df["pitches"].sum()}')
print(f'Curveballs on 3-1 count: {curveball_31_df["pitches"].sum()}')
print(f'Curveballs on 3-2 count: {curveball_32_df["pitches"].sum()}')
print(f'Cutters on 0-0 count: {cutter_00_df["pitches"].sum()}') 
print(f'Cutters on 0-1 count: {cutter_01_df["pitches"].sum()}') 
print(f'Cutters on 0-2 count: {cutter_02_df["pitches"].sum()}') 
print(f'Cutters on 1-0 count: {cutter_10_df["pitches"].sum()}') 
print(f'Cutters on 1-1 count: {cutter_11_df["pitches"].sum()}') 
print(f'Cutters on 1-2 count: {cutter_12_df["pitches"].sum()}')
print(f'Cutters on 2-0 count: {cutter_20_df["pitches"].sum()}') 
print(f'Cutters on 2-1 count: {cutter_21_df["pitches"].sum()}')
print(f'Cutters on 2-2 count: {cutter_22_df["pitches"].sum()}')
print(f'Cutters on 3-0 count: {cutter_30_df["pitches"].sum()}')
print(f'Cutters on 3-1 count: {cutter_31_df["pitches"].sum()}')
print(f'Cutters on 3-2 count: {cutter_32_df["pitches"].sum()}')
print(f'Fastballs on 0-0 count: {fastball_00_df["pitches"].sum()}')
print(f'Fastballs on 0-1 count: {fastball_01_df["pitches"].sum()}') 
print(f'Fastballs on 0-2 count: {fastball_02_df["pitches"].sum()}') 
print(f'Fastballs on 1-0 count: {fastball_10_df["pitches"].sum()}') 
print(f'Fastballs on 1-1 count: {fastball_11_df["pitches"].sum()}') 
print(f'Fastballs on 1-2 count: {fastball_12_df["pitches"].sum()}') 
print(f'Fastballs on 2-0 count: {fastball_20_df["pitches"].sum()}') 
print(f'Fastballs on 2-1 count: {fastball_21_df["pitches"].sum()}')
print(f'Fastballs on 2-2 count: {fastball_22_df["pitches"].sum()}')
print(f'Fastballs on 3-0 count: {fastball_30_df["pitches"].sum()}')
print(f'Fastballs on 3-1 count: {fastball_31_df["pitches"].sum()}')
print(f'Fastballs on 3-2 count: {fastball_32_df["pitches"].sum()}') 
print(f'Sliders on 0-0 count: {slider_00_df["pitches"].sum()}') 
print(f'Sliders on 0-1 count: {slider_01_df["pitches"].sum()}')
print(f'Sliders on 0-2 count: {slider_02_df["pitches"].sum()}')
print(f'Sliders on 1-0 count: {slider_10_df["pitches"].sum()}')
print(f'Sliders on 1-1 count: {slider_11_df["pitches"].sum()}')
print(f'Sliders on 1-2 count: {slider_12_df["pitches"].sum()}') 
print(f'Sliders on 2-0 count: {slider_20_df["pitches"].sum()}') 
print(f'Sliders on 2-1 count: {slider_21_df["pitches"].sum()}')
print(f'Sliders on 2-2 count: {slider_22_df["pitches"].sum()}') 
print(f'Sliders on 3-0 count: {slider_30_df["pitches"].sum()}') 
print(f'Sliders on 3-1 count: {slider_31_df["pitches"].sum()}')
print(f'Sliders on 3-2 count: {slider_32_df["pitches"].sum()}')
print(f'Splitters on 0-0 count: {splitter_00_df["pitches"].sum()}') 
print(f'Splitters on 0-1 count: {splitter_01_df["pitches"].sum()}')
print(f'Splitters on 0-2 count: {splitter_02_df["pitches"].sum()}')
print(f'Splitters on 1-0 count: {splitter_10_df["pitches"].sum()}')
print(f'Splitters on 1-1 count: {splitter_11_df["pitches"].sum()}')
print(f'Splitters on 1-2 count: {splitter_12_df["pitches"].sum()}')
print(f'Splitters on 2-0 count: {splitter_20_df["pitches"].sum()}')
print(f'Splitters on 2-1 count: {splitter_21_df["pitches"].sum()}')
print(f'Splitters on 2-2 count: {splitter_22_df["pitches"].sum()}')
print(f'Splitters on 3-0 count: {splitter_30_df["pitches"].sum()}')
print(f'Splitters on 3-1 count: {splitter_31_df["pitches"].sum()}')
print(f'Splitters on 3-2 count: {splitter_32_df["pitches"].sum()}')
Changeups on 0-0 count: 11963
Changeups on 0-1 count: 12116
Changeups on 0-2 count: 5345
Changeups on 1-0 count: 7688
Changeups on 1-1 count: 9908
Changeups on 1-2 count: 8371
Changeups on 2-0 count: 1906
Changeups on 2-1 count: 4287
Changeups on 2-2 count: 7097
Changeups on 3-0 count: 80
Changeups on 3-1 count: 878
Changeups on 3-2 count: 3168
Curveballs on 0-0 count: 17159
Curveballs on 0-1 count: 7469
Curveballs on 0-2 count: 5338
Curveballs on 1-0 count: 4218
Curveballs on 1-1 count: 5743
Curveballs on 1-2 count: 7460
Curveballs on 2-0 count: 799
Curveballs on 2-1 count: 2172
Curveballs on 2-2 count: 5521
Curveballs on 3-0 count: 26
Curveballs on 3-1 count: 343
Curveballs on 3-2 count: 1984
Cutters on 0-0 count: 16579
Cutters on 0-1 count: 7647
Cutters on 0-2 count: 2308
Cutters on 1-0 count: 6913
Cutters on 1-1 count: 6007
Cutters on 1-2 count: 3521
Cutters on 2-0 count: 2477
Cutters on 2-1 count: 3804
Cutters on 2-2 count: 3621
Cutters on 3-0 count: 373
Cutters on 3-1 count: 1498
Cutters on 3-2 count: 3121
Fastballs on 0-0 count: 94489
Fastballs on 0-1 count: 39712
Fastballs on 0-2 count: 19352
Fastballs on 1-0 count: 33639
Fastballs on 1-1 count: 30584
Fastballs on 1-2 count: 27958
Fastballs on 2-0 count: 13517
Fastballs on 2-1 count: 17719
Fastballs on 2-2 count: 25585
Fastballs on 3-0 count: 6111
Fastballs on 3-1 count: 10181
Fastballs on 3-2 count: 19584
Sliders on 0-0 count: 38337
Sliders on 0-1 count: 21851
Sliders on 0-2 count: 13969
Sliders on 1-0 count: 13774
Sliders on 1-1 count: 16178
Sliders on 1-2 count: 19211
Sliders on 2-0 count: 3463
Sliders on 2-1 count: 7396
Sliders on 2-2 count: 14835
Sliders on 3-0 count: 201
Sliders on 3-1 count: 1853
Sliders on 3-2 count: 7209
Splitters on 0-0 count: 2921
Splitters on 0-1 count: 3713
Splitters on 0-2 count: 2303
Splitters on 1-0 count: 1556
Splitters on 1-1 count: 2813
Splitters on 1-2 count: 3403
Splitters on 2-0 count: 302
Splitters on 2-1 count: 928
Splitters on 2-2 count: 2492
Splitters on 3-0 count: 15
Splitters on 3-1 count: 150
Splitters on 3-2 count: 773
In [27]:
# List of pitch types and counts
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']

# Initialize total pitches
total_pitches = 0

# Loop through pitch types and counts to calculate total
for pitch_type in pitch_types:
    for count in counts:
        # Construct the DataFrame name dynamically
        df_name = f"{pitch_type}_{count}_df"
        
        # Check if the DataFrame exists
        if df_name in locals():
            df = locals()[df_name]
            total_pitches += df["pitches"].sum()

print(f"Total pitches across all types and counts: {total_pitches}")
Total pitches across all types and counts: 706985
In [28]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']

# Dynamically create variables for all pitch types and counts
for pitch_type in pitch_types:
    for count in counts:
        df_name = f"{pitch_type}_{count}_df"
        var_name = f"{pitch_type}_{count}_total_pitches"
        
        # Check if the DataFrame exists
        if df_name in locals():
            df = locals()[df_name]
            total_pitches = df["pitches"].sum()
            
            # Dynamically assign the variable
            exec(f"{var_name} = total_pitches")
            
            # Optional: Print to verify
            print(f"{var_name}: {total_pitches}")
changeup_00_total_pitches: 11963
changeup_01_total_pitches: 12116
changeup_02_total_pitches: 5345
changeup_10_total_pitches: 7688
changeup_11_total_pitches: 9908
changeup_12_total_pitches: 8371
changeup_20_total_pitches: 1906
changeup_21_total_pitches: 4287
changeup_22_total_pitches: 7097
changeup_30_total_pitches: 80
changeup_31_total_pitches: 878
changeup_32_total_pitches: 3168
curveball_00_total_pitches: 17159
curveball_01_total_pitches: 7469
curveball_02_total_pitches: 5338
curveball_10_total_pitches: 4218
curveball_11_total_pitches: 5743
curveball_12_total_pitches: 7460
curveball_20_total_pitches: 799
curveball_21_total_pitches: 2172
curveball_22_total_pitches: 5521
curveball_30_total_pitches: 26
curveball_31_total_pitches: 343
curveball_32_total_pitches: 1984
cutter_00_total_pitches: 16579
cutter_01_total_pitches: 7647
cutter_02_total_pitches: 2308
cutter_10_total_pitches: 6913
cutter_11_total_pitches: 6007
cutter_12_total_pitches: 3521
cutter_20_total_pitches: 2477
cutter_21_total_pitches: 3804
cutter_22_total_pitches: 3621
cutter_30_total_pitches: 373
cutter_31_total_pitches: 1498
cutter_32_total_pitches: 3121
fastball_00_total_pitches: 94489
fastball_01_total_pitches: 39712
fastball_02_total_pitches: 19352
fastball_10_total_pitches: 33639
fastball_11_total_pitches: 30584
fastball_12_total_pitches: 27958
fastball_20_total_pitches: 13517
fastball_21_total_pitches: 17719
fastball_22_total_pitches: 25585
fastball_30_total_pitches: 6111
fastball_31_total_pitches: 10181
fastball_32_total_pitches: 19584
slider_00_total_pitches: 38337
slider_01_total_pitches: 21851
slider_02_total_pitches: 13969
slider_10_total_pitches: 13774
slider_11_total_pitches: 16178
slider_12_total_pitches: 19211
slider_20_total_pitches: 3463
slider_21_total_pitches: 7396
slider_22_total_pitches: 14835
slider_30_total_pitches: 201
slider_31_total_pitches: 1853
slider_32_total_pitches: 7209
splitter_00_total_pitches: 2921
splitter_01_total_pitches: 3713
splitter_02_total_pitches: 2303
splitter_10_total_pitches: 1556
splitter_11_total_pitches: 2813
splitter_12_total_pitches: 3403
splitter_20_total_pitches: 302
splitter_21_total_pitches: 928
splitter_22_total_pitches: 2492
splitter_30_total_pitches: 15
splitter_31_total_pitches: 150
splitter_32_total_pitches: 773
In [29]:
cutter_21_total_pitches
Out[29]:
3804
In [30]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Dynamically create variables for all pitch types, counts, and outcomes
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            df_name = f"{pitch_type}_{count}_df"
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the DataFrame exists
            if df_name in locals():
                df = locals()[df_name]
                
                # Check if the outcome column exists and calculate total
                if 'outcome' in df.columns:
                    total_pitches = df[df['outcome'] == outcome]["pitches"].sum()
                    
                    # Dynamically assign the variable
                    exec(f"{var_name} = total_pitches")
                    
                    # Optional: Print to verify
                    print(f"{var_name}: {total_pitches}")
changeup_00_ball_total: 4996
changeup_00_called_strike_total: 2688
changeup_00_foul_total: 1205
changeup_00_hit_by_pitch_total: 13
changeup_00_ball_in_play_total: 1471
changeup_00_swinging_strike_total: 1590
changeup_01_ball_total: 5517
changeup_01_called_strike_total: 725
changeup_01_foul_total: 1683
changeup_01_hit_by_pitch_total: 9
changeup_01_ball_in_play_total: 2277
changeup_01_swinging_strike_total: 1905
changeup_02_ball_total: 2659
changeup_02_called_strike_total: 102
changeup_02_foul_total: 753
changeup_02_hit_by_pitch_total: 8
changeup_02_ball_in_play_total: 1052
changeup_02_swinging_strike_total: 771
changeup_10_ball_total: 2931
changeup_10_called_strike_total: 1299
changeup_10_foul_total: 980
changeup_10_hit_by_pitch_total: 6
changeup_10_ball_in_play_total: 1203
changeup_10_swinging_strike_total: 1269
changeup_11_ball_total: 3866
changeup_11_called_strike_total: 698
changeup_11_foul_total: 1659
changeup_11_hit_by_pitch_total: 6
changeup_11_ball_in_play_total: 2108
changeup_11_swinging_strike_total: 1571
changeup_12_ball_total: 3407
changeup_12_called_strike_total: 163
changeup_12_foul_total: 1518
changeup_12_hit_by_pitch_total: 12
changeup_12_ball_in_play_total: 1990
changeup_12_swinging_strike_total: 1281
changeup_20_ball_total: 660
changeup_20_called_strike_total: 405
changeup_20_foul_total: 249
changeup_20_hit_by_pitch_total: 2
changeup_20_ball_in_play_total: 253
changeup_20_swinging_strike_total: 337
changeup_21_ball_total: 1435
changeup_21_called_strike_total: 383
changeup_21_foul_total: 807
changeup_21_hit_by_pitch_total: 7
changeup_21_ball_in_play_total: 932
changeup_21_swinging_strike_total: 723
changeup_22_ball_total: 2455
changeup_22_called_strike_total: 181
changeup_22_foul_total: 1479
changeup_22_hit_by_pitch_total: 17
changeup_22_ball_in_play_total: 1844
changeup_22_swinging_strike_total: 1121
changeup_30_ball_total: 34
changeup_30_called_strike_total: 34
changeup_30_foul_total: 4
changeup_30_hit_by_pitch_total: 0
changeup_30_ball_in_play_total: 3
changeup_30_swinging_strike_total: 5
changeup_31_ball_total: 284
changeup_31_called_strike_total: 147
changeup_31_foul_total: 123
changeup_31_hit_by_pitch_total: 1
changeup_31_ball_in_play_total: 148
changeup_31_swinging_strike_total: 175
changeup_32_ball_total: 820
changeup_32_called_strike_total: 135
changeup_32_foul_total: 796
changeup_32_hit_by_pitch_total: 4
changeup_32_ball_in_play_total: 850
changeup_32_swinging_strike_total: 563
curveball_00_ball_total: 7123
curveball_00_called_strike_total: 5949
curveball_00_foul_total: 1325
curveball_00_hit_by_pitch_total: 52
curveball_00_ball_in_play_total: 1355
curveball_00_swinging_strike_total: 1355
curveball_01_ball_total: 3095
curveball_01_called_strike_total: 998
curveball_01_foul_total: 1048
curveball_01_hit_by_pitch_total: 18
curveball_01_ball_in_play_total: 1150
curveball_01_swinging_strike_total: 1160
curveball_02_ball_total: 2591
curveball_02_called_strike_total: 138
curveball_02_foul_total: 798
curveball_02_hit_by_pitch_total: 35
curveball_02_ball_in_play_total: 926
curveball_02_swinging_strike_total: 850
curveball_10_ball_total: 1551
curveball_10_called_strike_total: 1312
curveball_10_foul_total: 431
curveball_10_hit_by_pitch_total: 11
curveball_10_ball_in_play_total: 450
curveball_10_swinging_strike_total: 463
curveball_11_ball_total: 2041
curveball_11_called_strike_total: 793
curveball_11_foul_total: 987
curveball_11_hit_by_pitch_total: 8
curveball_11_ball_in_play_total: 989
curveball_11_swinging_strike_total: 925
curveball_12_ball_total: 2977
curveball_12_called_strike_total: 231
curveball_12_foul_total: 1413
curveball_12_hit_by_pitch_total: 38
curveball_12_ball_in_play_total: 1499
curveball_12_swinging_strike_total: 1302
curveball_20_ball_total: 282
curveball_20_called_strike_total: 284
curveball_20_foul_total: 86
curveball_20_hit_by_pitch_total: 1
curveball_20_ball_in_play_total: 68
curveball_20_swinging_strike_total: 78
curveball_21_ball_total: 704
curveball_21_called_strike_total: 383
curveball_21_foul_total: 360
curveball_21_hit_by_pitch_total: 6
curveball_21_ball_in_play_total: 385
curveball_21_swinging_strike_total: 334
curveball_22_ball_total: 1852
curveball_22_called_strike_total: 209
curveball_22_foul_total: 1232
curveball_22_hit_by_pitch_total: 23
curveball_22_ball_in_play_total: 1239
curveball_22_swinging_strike_total: 966
curveball_30_ball_total: 11
curveball_30_called_strike_total: 11
curveball_30_foul_total: 0
curveball_30_hit_by_pitch_total: 0
curveball_30_ball_in_play_total: 2
curveball_30_swinging_strike_total: 2
curveball_31_ball_total: 97
curveball_31_called_strike_total: 107
curveball_31_foul_total: 51
curveball_31_hit_by_pitch_total: 0
curveball_31_ball_in_play_total: 39
curveball_31_swinging_strike_total: 49
curveball_32_ball_total: 520
curveball_32_called_strike_total: 119
curveball_32_foul_total: 506
curveball_32_hit_by_pitch_total: 7
curveball_32_ball_in_play_total: 477
curveball_32_swinging_strike_total: 355
cutter_00_ball_total: 6154
cutter_00_called_strike_total: 4651
cutter_00_foul_total: 2206
cutter_00_hit_by_pitch_total: 33
cutter_00_ball_in_play_total: 2102
cutter_00_swinging_strike_total: 1433
cutter_01_ball_total: 3069
cutter_01_called_strike_total: 661
cutter_01_foul_total: 1545
cutter_01_hit_by_pitch_total: 23
cutter_01_ball_in_play_total: 1443
cutter_01_swinging_strike_total: 906
cutter_02_ball_total: 1102
cutter_02_called_strike_total: 76
cutter_02_foul_total: 423
cutter_02_hit_by_pitch_total: 8
cutter_02_ball_in_play_total: 390
cutter_02_swinging_strike_total: 309
cutter_10_ball_total: 2156
cutter_10_called_strike_total: 1441
cutter_10_foul_total: 1271
cutter_10_hit_by_pitch_total: 8
cutter_10_ball_in_play_total: 1233
cutter_10_swinging_strike_total: 804
cutter_11_ball_total: 2004
cutter_11_called_strike_total: 521
cutter_11_foul_total: 1399
cutter_11_hit_by_pitch_total: 21
cutter_11_ball_in_play_total: 1279
cutter_11_swinging_strike_total: 783
cutter_12_ball_total: 1391
cutter_12_called_strike_total: 131
cutter_12_foul_total: 706
cutter_12_hit_by_pitch_total: 9
cutter_12_ball_in_play_total: 759
cutter_12_swinging_strike_total: 525
cutter_20_ball_total: 714
cutter_20_called_strike_total: 662
cutter_20_foul_total: 445
cutter_20_hit_by_pitch_total: 5
cutter_20_ball_in_play_total: 410
cutter_20_swinging_strike_total: 241
cutter_21_ball_total: 1031
cutter_21_called_strike_total: 447
cutter_21_foul_total: 947
cutter_21_hit_by_pitch_total: 2
cutter_21_ball_in_play_total: 873
cutter_21_swinging_strike_total: 504
cutter_22_ball_total: 1066
cutter_22_called_strike_total: 142
cutter_22_foul_total: 990
cutter_22_hit_by_pitch_total: 13
cutter_22_ball_in_play_total: 868
cutter_22_swinging_strike_total: 542
cutter_30_ball_total: 123
cutter_30_called_strike_total: 213
cutter_30_foul_total: 13
cutter_30_hit_by_pitch_total: 0
cutter_30_ball_in_play_total: 13
cutter_30_swinging_strike_total: 11
cutter_31_ball_total: 383
cutter_31_called_strike_total: 265
cutter_31_foul_total: 330
cutter_31_hit_by_pitch_total: 3
cutter_31_ball_in_play_total: 341
cutter_31_swinging_strike_total: 176
cutter_32_ball_total: 607
cutter_32_called_strike_total: 173
cutter_32_foul_total: 930
cutter_32_hit_by_pitch_total: 5
cutter_32_ball_in_play_total: 950
cutter_32_swinging_strike_total: 456
fastball_00_ball_total: 33559
fastball_00_called_strike_total: 29441
fastball_00_foul_total: 13303
fastball_00_hit_by_pitch_total: 279
fastball_00_ball_in_play_total: 11803
fastball_00_swinging_strike_total: 6104
fastball_01_ball_total: 14632
fastball_01_called_strike_total: 5186
fastball_01_foul_total: 8724
fastball_01_hit_by_pitch_total: 165
fastball_01_ball_in_play_total: 6704
fastball_01_swinging_strike_total: 4301
fastball_02_ball_total: 8017
fastball_02_called_strike_total: 1022
fastball_02_foul_total: 4695
fastball_02_hit_by_pitch_total: 66
fastball_02_ball_in_play_total: 3269
fastball_02_swinging_strike_total: 2283
fastball_10_ball_total: 10540
fastball_10_called_strike_total: 8118
fastball_10_foul_total: 6252
fastball_10_hit_by_pitch_total: 78
fastball_10_ball_in_play_total: 5865
fastball_10_swinging_strike_total: 2786
fastball_11_ball_total: 9799
fastball_11_called_strike_total: 3846
fastball_11_foul_total: 7337
fastball_11_hit_by_pitch_total: 107
fastball_11_ball_in_play_total: 6008
fastball_11_swinging_strike_total: 3487
fastball_12_ball_total: 9840
fastball_12_called_strike_total: 1643
fastball_12_foul_total: 7290
fastball_12_hit_by_pitch_total: 137
fastball_12_ball_in_play_total: 5472
fastball_12_swinging_strike_total: 3576
fastball_20_ball_total: 3969
fastball_20_called_strike_total: 3462
fastball_20_foul_total: 2580
fastball_20_hit_by_pitch_total: 26
fastball_20_ball_in_play_total: 2491
fastball_20_swinging_strike_total: 989
fastball_21_ball_total: 4994
fastball_21_called_strike_total: 2300
fastball_21_foul_total: 4454
fastball_21_hit_by_pitch_total: 42
fastball_21_ball_in_play_total: 4109
fastball_21_swinging_strike_total: 1820
fastball_22_ball_total: 7022
fastball_22_called_strike_total: 1706
fastball_22_foul_total: 7330
fastball_22_hit_by_pitch_total: 103
fastball_22_ball_in_play_total: 6318
fastball_22_swinging_strike_total: 3106
fastball_30_ball_total: 1920
fastball_30_called_strike_total: 3581
fastball_30_foul_total: 265
fastball_30_hit_by_pitch_total: 9
fastball_30_ball_in_play_total: 261
fastball_30_swinging_strike_total: 75
fastball_31_ball_total: 2678
fastball_31_called_strike_total: 1688
fastball_31_foul_total: 2393
fastball_31_hit_by_pitch_total: 16
fastball_31_ball_in_play_total: 2542
fastball_31_swinging_strike_total: 864
fastball_32_ball_total: 4309
fastball_32_called_strike_total: 1436
fastball_32_foul_total: 5939
fastball_32_hit_by_pitch_total: 52
fastball_32_ball_in_play_total: 5828
fastball_32_swinging_strike_total: 2020
slider_00_ball_total: 14611
slider_00_called_strike_total: 11779
slider_00_foul_total: 3642
slider_00_hit_by_pitch_total: 82
slider_00_ball_in_play_total: 3695
slider_00_swinging_strike_total: 4528
slider_01_ball_total: 8830
slider_01_called_strike_total: 2270
slider_01_foul_total: 3230
slider_01_hit_by_pitch_total: 54
slider_01_ball_in_play_total: 3696
slider_01_swinging_strike_total: 3771
slider_02_ball_total: 6655
slider_02_called_strike_total: 378
slider_02_foul_total: 2171
slider_02_hit_by_pitch_total: 63
slider_02_ball_in_play_total: 2469
slider_02_swinging_strike_total: 2233
slider_10_ball_total: 4692
slider_10_called_strike_total: 3428
slider_10_foul_total: 1790
slider_10_hit_by_pitch_total: 28
slider_10_ball_in_play_total: 1725
slider_10_swinging_strike_total: 2111
slider_11_ball_total: 5564
slider_11_called_strike_total: 1837
slider_11_foul_total: 2807
slider_11_hit_by_pitch_total: 42
slider_11_ball_in_play_total: 3089
slider_11_swinging_strike_total: 2839
slider_12_ball_total: 7632
slider_12_called_strike_total: 564
slider_12_foul_total: 3654
slider_12_hit_by_pitch_total: 85
slider_12_ball_in_play_total: 3894
slider_12_swinging_strike_total: 3382
slider_20_ball_total: 1095
slider_20_called_strike_total: 1105
slider_20_foul_total: 417
slider_20_hit_by_pitch_total: 6
slider_20_ball_in_play_total: 382
slider_20_swinging_strike_total: 458
slider_21_ball_total: 2094
slider_21_called_strike_total: 1080
slider_21_foul_total: 1450
slider_21_hit_by_pitch_total: 16
slider_21_ball_in_play_total: 1438
slider_21_swinging_strike_total: 1318
slider_22_ball_total: 4782
slider_22_called_strike_total: 532
slider_22_foul_total: 3312
slider_22_hit_by_pitch_total: 63
slider_22_ball_in_play_total: 3463
slider_22_swinging_strike_total: 2683
slider_30_ball_total: 73
slider_30_called_strike_total: 109
slider_30_foul_total: 3
slider_30_hit_by_pitch_total: 0
slider_30_ball_in_play_total: 4
slider_30_swinging_strike_total: 12
slider_31_ball_total: 495
slider_31_called_strike_total: 450
slider_31_foul_total: 299
slider_31_hit_by_pitch_total: 1
slider_31_ball_in_play_total: 270
slider_31_swinging_strike_total: 338
slider_32_ball_total: 1695
slider_32_called_strike_total: 460
slider_32_foul_total: 1919
slider_32_hit_by_pitch_total: 20
slider_32_ball_in_play_total: 1801
slider_32_swinging_strike_total: 1314
splitter_00_ball_total: 1165
splitter_00_called_strike_total: 612
splitter_00_foul_total: 366
splitter_00_hit_by_pitch_total: 3
splitter_00_ball_in_play_total: 355
splitter_00_swinging_strike_total: 420
splitter_01_ball_total: 1659
splitter_01_called_strike_total: 193
splitter_01_foul_total: 543
splitter_01_hit_by_pitch_total: 10
splitter_01_ball_in_play_total: 625
splitter_01_swinging_strike_total: 683
splitter_02_ball_total: 1095
splitter_02_called_strike_total: 50
splitter_02_foul_total: 383
splitter_02_hit_by_pitch_total: 11
splitter_02_ball_in_play_total: 354
splitter_02_swinging_strike_total: 410
splitter_10_ball_total: 619
splitter_10_called_strike_total: 251
splitter_10_foul_total: 209
splitter_10_hit_by_pitch_total: 1
splitter_10_ball_in_play_total: 190
splitter_10_swinging_strike_total: 286
splitter_11_ball_total: 1091
splitter_11_called_strike_total: 167
splitter_11_foul_total: 490
splitter_11_hit_by_pitch_total: 2
splitter_11_ball_in_play_total: 541
splitter_11_swinging_strike_total: 522
splitter_12_ball_total: 1372
splitter_12_called_strike_total: 60
splitter_12_foul_total: 668
splitter_12_hit_by_pitch_total: 8
splitter_12_ball_in_play_total: 677
splitter_12_swinging_strike_total: 618
splitter_20_ball_total: 123
splitter_20_called_strike_total: 59
splitter_20_foul_total: 33
splitter_20_hit_by_pitch_total: 0
splitter_20_ball_in_play_total: 34
splitter_20_swinging_strike_total: 53
splitter_21_ball_total: 315
splitter_21_called_strike_total: 61
splitter_21_foul_total: 192
splitter_21_hit_by_pitch_total: 0
splitter_21_ball_in_play_total: 189
splitter_21_swinging_strike_total: 171
splitter_22_ball_total: 883
splitter_22_called_strike_total: 60
splitter_22_foul_total: 523
splitter_22_hit_by_pitch_total: 7
splitter_22_ball_in_play_total: 544
splitter_22_swinging_strike_total: 475
splitter_30_ball_total: 9
splitter_30_called_strike_total: 6
splitter_30_foul_total: 0
splitter_30_hit_by_pitch_total: 0
splitter_30_ball_in_play_total: 0
splitter_30_swinging_strike_total: 0
splitter_31_ball_total: 56
splitter_31_called_strike_total: 18
splitter_31_foul_total: 25
splitter_31_hit_by_pitch_total: 0
splitter_31_ball_in_play_total: 20
splitter_31_swinging_strike_total: 31
splitter_32_ball_total: 214
splitter_32_called_strike_total: 31
splitter_32_foul_total: 181
splitter_32_hit_by_pitch_total: 6
splitter_32_ball_in_play_total: 167
splitter_32_swinging_strike_total: 174
In [31]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize a dictionary to store the total for each pitch type
pitch_type_totals = {pitch_type: 0 for pitch_type in pitch_types}

# Dynamically create variables for pitch type totals
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                pitch_type_totals[pitch_type] += locals()[var_name]
    
    # Dynamically assign the variable name for pitch type total
    exec(f"{pitch_type}_total = pitch_type_totals['{pitch_type}']")
    # Optional: Print to verify
    print(f"{pitch_type}_total: {locals()[f'{pitch_type}_total']}")
changeup_total: 72807
curveball_total: 58232
cutter_total: 57869
fastball_total: 338431
slider_total: 158277
splitter_total: 21369
In [32]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize a dictionary to store the total for each count
count_totals = {count: 0 for count in counts}

# Dynamically create variables for count totals
for count in counts:
    for pitch_type in pitch_types:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                count_totals[count] += locals()[var_name]
    
    # Dynamically assign the variable name for count total
    exec(f"count_{count}_total = count_totals['{count}']")
    # Optional: Print to verify
    print(f"count_{count}_total: {locals()[f'count_{count}_total']}") 
count_00_total: 181448
count_01_total: 92508
count_02_total: 48615
count_10_total: 67788
count_11_total: 71233
count_12_total: 69924
count_20_total: 22464
count_21_total: 36306
count_22_total: 59151
count_30_total: 6806
count_31_total: 14903
count_32_total: 35839
In [33]:
changeup_00_ball_total
Out[33]:
4996
In [34]:
changeup_total
Out[34]:
72807
In [35]:
fastball_20_total_pitches
Out[35]:
13517
In [36]:
count_22_total
Out[36]:
59151
In [37]:
# Define the statistics to calculate based on the provided column names
statistics = {
    "pitches": "sum",
    "ba": "mean",
    "slg": "mean",
    "hits": "sum",
    "abs": "sum",
    "whiffs": "sum",
    "swings": "sum",
    "takes": "sum",
    "pitcher_run_exp": ["mean", "median"],
    "pa": "sum",
    "singles": "sum",
    "doubles": "sum",
    "triples": "sum",
    "hrs": "sum",
    "so": "sum",
    "k_percent": "mean",
    "bb": "sum",
    "bb_percent": "mean",
    "obp": "mean",
    "pitcher_run_value_per_100": ["mean", "median"]
}

# Define pitch types and counts
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
grouped_stats = []  # To hold grouped statistics for all DataFrames

# Loop through all pitch types and counts
for pitch_type in pitch_types:
    for count in counts:
        df_name = f"{pitch_type}_{count}_df"  # Construct the DataFrame name
        
        if df_name in locals():  # Check if the DataFrame exists
            df = locals()[df_name]
            
            # Group by 'outcome' and calculate statistics
            grouped = df.groupby("outcome").agg(statistics).reset_index()
            grouped.columns = ['_'.join(col).strip() if isinstance(col, tuple) else col for col in grouped.columns]
            
            # Add contextual columns for pitch type and count
            grouped["pitch_type"] = pitch_type
            grouped["count"] = count
            
            grouped_stats.append(grouped)  # Append the grouped DataFrame

# Combine all grouped statistics into a single DataFrame
final_grouped_df = pd.concat(grouped_stats, ignore_index=True)

columns = ["pitch_type", "count"] + [col for col in final_grouped_df.columns if col not in ["pitch_type", "count"]]
final_grouped_df = final_grouped_df[columns]

# Display the final DataFrame
print(final_grouped_df)
    pitch_type count         outcome_  pitches_sum   ba_mean  slg_mean  \
0     changeup    00             ball         4996       NaN       NaN   
1     changeup    00     ball_in_play         1471  0.336722  0.521123   
2     changeup    00    called_strike         2688       NaN       NaN   
3     changeup    00             foul         1205       NaN       NaN   
4     changeup    00     hit_by_pitch           13       NaN       NaN   
..         ...   ...              ...          ...       ...       ...   
414   splitter    32     ball_in_play          167  0.309509  0.520789   
415   splitter    32    called_strike           31  0.000000  0.000000   
416   splitter    32             foul          181       NaN       NaN   
417   splitter    32     hit_by_pitch            6       NaN       NaN   
418   splitter    32  swinging_strike          174  0.000000  0.000000   

     hits_sum  abs_sum  whiffs_sum  swings_sum  ...  doubles_sum  triples_sum  \
0         0.0      0.0           0           0  ...          0.0          0.0   
1       485.0   1438.0           0        1471  ...        101.0          3.0   
2         0.0      0.0           0           0  ...          0.0          0.0   
3         0.0      0.0           0        1205  ...          0.0          0.0   
4         0.0      0.0           0           0  ...          0.0          0.0   
..        ...      ...         ...         ...  ...          ...          ...   
414      57.0    167.0           0         167  ...         17.0          1.0   
415       0.0     31.0           0           0  ...          0.0          0.0   
416       0.0      0.0           0         181  ...          0.0          0.0   
417       0.0      0.0           0           0  ...          0.0          0.0   
418       0.0    174.0         174         174  ...          0.0          0.0   

     hrs_sum  so_sum  k_percent_mean  bb_sum  bb_percent_mean  obp_mean  \
0        0.0     0.0             NaN     0.0              NaN       NaN   
1       60.0     0.0             0.0     0.0              0.0  0.333651   
2        0.0     0.0             NaN     0.0              NaN       NaN   
3        0.0     0.0             0.0     0.0              0.0       NaN   
4        0.0     0.0             0.0     0.0              0.0  1.000000   
..       ...     ...             ...     ...              ...       ...   
414      7.0     0.0             0.0     0.0              0.0  0.309509   
415      0.0    31.0           100.0     0.0              0.0  0.000000   
416      0.0     0.0             0.0     0.0              0.0       NaN   
417      0.0     0.0             0.0     0.0              0.0  1.000000   
418      0.0   174.0           100.0     0.0              0.0  0.000000   

     pitcher_run_value_per_100_mean  pitcher_run_value_per_100_median  
0                         -3.689855                         -3.551667  
1                         -4.500991                          0.837500  
2                          4.248521                          4.020000  
3                          4.488925                          4.300000  
4                        -40.561538                        -40.500000  
..                              ...                               ...  
414                        0.554942                         14.800000  
415                       30.580667                         29.900000  
416                        0.000000                          0.000000  
417                      -44.350000                        -43.850000  
418                       32.044817                         29.805000  

[419 rows x 25 columns]
In [38]:
final_grouped_df
Out[38]:
pitch_type count outcome_ pitches_sum ba_mean slg_mean hits_sum abs_sum whiffs_sum swings_sum ... doubles_sum triples_sum hrs_sum so_sum k_percent_mean bb_sum bb_percent_mean obp_mean pitcher_run_value_per_100_mean pitcher_run_value_per_100_median
0 changeup 00 ball 4996 NaN NaN 0.0 0.0 0 0 ... 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN -3.689855 -3.551667
1 changeup 00 ball_in_play 1471 0.336722 0.521123 485.0 1438.0 0 1471 ... 101.0 3.0 60.0 0.0 0.0 0.0 0.0 0.333651 -4.500991 0.837500
2 changeup 00 called_strike 2688 NaN NaN 0.0 0.0 0 0 ... 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN 4.248521 4.020000
3 changeup 00 foul 1205 NaN NaN 0.0 0.0 0 1205 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 NaN 4.488925 4.300000
4 changeup 00 hit_by_pitch 13 NaN NaN 0.0 0.0 0 0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.000000 -40.561538 -40.500000
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
414 splitter 32 ball_in_play 167 0.309509 0.520789 57.0 167.0 0 167 ... 17.0 1.0 7.0 0.0 0.0 0.0 0.0 0.309509 0.554942 14.800000
415 splitter 32 called_strike 31 0.000000 0.000000 0.0 31.0 0 0 ... 0.0 0.0 0.0 31.0 100.0 0.0 0.0 0.000000 30.580667 29.900000
416 splitter 32 foul 181 NaN NaN 0.0 0.0 0 181 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.000000 0.000000
417 splitter 32 hit_by_pitch 6 NaN NaN 0.0 0.0 0 0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.000000 -44.350000 -43.850000
418 splitter 32 swinging_strike 174 0.000000 0.000000 0.0 174.0 174 174 ... 0.0 0.0 0.0 174.0 100.0 0.0 0.0 0.000000 32.044817 29.805000

419 rows × 25 columns

In [39]:
pd.set_option('display.max_columns', None)
final_grouped_df.head(18)
Out[39]:
pitch_type count outcome_ pitches_sum ba_mean slg_mean hits_sum abs_sum whiffs_sum swings_sum takes_sum pitcher_run_exp_mean pitcher_run_exp_median pa_sum singles_sum doubles_sum triples_sum hrs_sum so_sum k_percent_mean bb_sum bb_percent_mean obp_mean pitcher_run_value_per_100_mean pitcher_run_value_per_100_median
0 changeup 00 ball 4996 NaN NaN 0.0 0.0 0 0 4996 -0.418981 -0.2 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN -3.689855 -3.551667
1 changeup 00 ball_in_play 1471 0.336722 0.521123 485.0 1438.0 0 1471 0 -0.248910 0.0 1471.0 321.0 101.0 3.0 60.0 0.0 0.0 0.0 0.0 0.333651 -4.500991 0.837500
2 changeup 00 called_strike 2688 NaN NaN 0.0 0.0 0 0 2688 0.288189 0.2 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN 4.248521 4.020000
3 changeup 00 foul 1205 NaN NaN 0.0 0.0 0 1205 0 0.175920 0.1 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 NaN 4.488925 4.300000
4 changeup 00 hit_by_pitch 13 NaN NaN 0.0 0.0 0 0 13 -0.400000 -0.4 13.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.000000 -40.561538 -40.500000
5 changeup 00 swinging_strike 1590 NaN NaN 0.0 0.0 1590 1590 0 0.209846 0.1 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN 4.314444 4.100000
6 changeup 01 ball 5517 NaN NaN 0.0 0.0 0 0 5517 -0.290756 -0.2 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN -2.509125 -2.433333
7 changeup 01 ball_in_play 2277 0.309591 0.459275 691.0 2247.0 0 2277 0 -0.319638 -0.1 2277.0 471.0 143.0 13.0 64.0 0.0 0.0 0.0 0.0 0.307752 -5.030436 -1.562500
8 changeup 01 called_strike 725 NaN NaN 0.0 0.0 0 0 725 0.121107 0.1 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN 5.260812 4.900000
9 changeup 01 foul 1683 NaN NaN 0.0 0.0 0 1683 0 0.247268 0.2 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 NaN 5.541527 5.200000
10 changeup 01 hit_by_pitch 9 NaN NaN 0.0 0.0 0 0 9 -0.488889 -0.4 9.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.000000 -47.955556 -43.800000
11 changeup 01 swinging_strike 1905 NaN NaN 0.0 0.0 1905 1905 0 0.282369 0.2 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN 5.489580 5.100000
12 changeup 02 ball 2659 NaN NaN 0.0 0.0 0 0 2659 -0.144186 -0.1 0.0 0.0 0.0 0.0 0.0 0.0 NaN 0.0 NaN NaN -2.158539 -2.100000
13 changeup 02 ball_in_play 1052 0.284812 0.389893 286.0 1044.0 0 1052 0 -0.265049 0.1 1052.0 216.0 44.0 4.0 22.0 0.0 0.0 0.0 0.0 0.282990 -8.913591 1.080000
14 changeup 02 called_strike 102 0.000000 0.000000 0.0 102.0 0 0 102 0.184615 0.1 102.0 0.0 0.0 0.0 0.0 102.0 100.0 0.0 0.0 0.000000 15.164530 14.600000
15 changeup 02 foul 753 0.000000 0.000000 0.0 1.0 0 753 0 -0.000769 0.0 1.0 0.0 0.0 0.0 0.0 1.0 100.0 0.0 0.0 0.000000 -0.005649 0.000000
16 changeup 02 hit_by_pitch 8 NaN NaN 0.0 0.0 0 0 8 -0.471429 -0.5 8.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.000000 -42.692857 -38.250000
17 changeup 02 swinging_strike 771 0.000000 0.000000 0.0 771.0 771 771 0 0.494636 0.3 771.0 0.0 0.0 0.0 0.0 771.0 100.0 0.0 0.0 0.000000 17.355344 14.600000
In [40]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize a dictionary to store the total for each pitch type
pitch_type_totals = {pitch_type: 0 for pitch_type in pitch_types}

# Dynamically calculate totals for pitch types
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                pitch_type_totals[pitch_type] += locals()[var_name]

# Calculate the grand total of all pitches
grand_total = sum(pitch_type_totals.values())

# Create a DataFrame to store totals and percentages for each pitch type
pitch_type_data = {
    "Pitch Type": [],
    "Total Pitches": [],
    "Percentage (%)": []
}

for pitch_type, total in pitch_type_totals.items():
    percentage = (total / grand_total) * 100
    pitch_type_data["Pitch Type"].append(pitch_type)
    pitch_type_data["Total Pitches"].append(total)
    pitch_type_data["Percentage (%)"].append(percentage)

# Convert the dictionary to a DataFrame
pitch_type_df = pd.DataFrame(pitch_type_data)

# Display the DataFrame
print(pitch_type_df)
  Pitch Type  Total Pitches  Percentage (%)
0   changeup          72807       10.298238
1  curveball          58232        8.236667
2     cutter          57869        8.185322
3   fastball         338431       47.869615
4     slider         158277       22.387604
5   splitter          21369        3.022554
In [41]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize dictionaries to store the totals for each pitch type and count
pitch_type_totals = {pitch_type: 0 for pitch_type in pitch_types}
count_totals = {count: 0 for count in counts}

# Dynamically calculate totals for pitch types and counts
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                # Add to the pitch type total
                pitch_type_totals[pitch_type] += locals()[var_name]
                
                # Add to the count total
                count_totals[count] += locals()[var_name]

# Calculate the grand total of all pitches
grand_total = sum(pitch_type_totals.values())

# Create a DataFrame to store probabilities for each count
count_probabilities = {
    "Count": [],
    "Probability (%)": []
}

for count, total in count_totals.items():
    probability = (total / grand_total) * 100
    count_probabilities["Count"].append(count)
    count_probabilities["Probability (%)"].append(probability)

# Convert the dictionary to a DataFrame
count_probabilities_df = pd.DataFrame(count_probabilities)

# Display the DataFrame
print(count_probabilities_df)
   Count  Probability (%)
0     00        25.665042
1     01        13.084860
2     02         6.876384
3     10         9.588322
4     11        10.075603
5     12         9.890450
6     20         3.177437
7     21         5.135328
8     22         8.366656
9     30         0.962680
10    31         2.107966
11    32         5.069273
In [42]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize dictionaries to store totals for pitch types in each count and overall count totals
pitch_type_count_totals = {count: {pitch_type: 0 for pitch_type in pitch_types} for count in counts}
count_totals = {count: 0 for count in counts}

# Dynamically calculate totals for each pitch type in each count and overall count totals
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                # Add to the specific pitch type and count total
                pitch_type_count_totals[count][pitch_type] += locals()[var_name]
                
                # Add to the overall count total
                count_totals[count] += locals()[var_name]

# Calculate probabilities for each pitch type in each count
pitch_type_count_probabilities = {
    count: {
        pitch_type: (pitch_type_count_totals[count][pitch_type] / count_totals[count]) * 100
        if count_totals[count] > 0 else 0  # Avoid division by zero
        for pitch_type in pitch_types
    }
    for count in counts
}

# Create a DataFrame to store the probabilities
probabilities_data = {
    "Count": [],
    "Pitch Type": [],
    "Probability (%)": []
}

for count, probabilities in pitch_type_count_probabilities.items():
    for pitch_type, prob in probabilities.items():
        probabilities_data["Count"].append(count)
        probabilities_data["Pitch Type"].append(pitch_type)
        probabilities_data["Probability (%)"].append(prob)

# Convert the dictionary to a DataFrame
probabilities_df = pd.DataFrame(probabilities_data)

# Display the DataFrame
print(probabilities_df.head(12))
   Count Pitch Type  Probability (%)
0     00   changeup         6.593073
1     00  curveball         9.456704
2     00     cutter         9.137053
3     00   fastball        52.074975
4     00     slider        21.128367
5     00   splitter         1.609828
6     01   changeup        13.097246
7     01  curveball         8.073896
8     01     cutter         8.266312
9     01   fastball        42.928179
10    01     slider        23.620660
11    01   splitter         4.013707
In [43]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize dictionaries to store totals for outcomes in each count and overall count totals
outcome_count_totals = {count: {outcome: 0 for outcome in outcomes} for count in counts}
count_totals = {count: 0 for count in counts}

# Dynamically calculate totals for each outcome in each count and overall count totals
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                # Add to the specific outcome and count total
                outcome_count_totals[count][outcome] += locals()[var_name]
                
                # Add to the overall count total
                count_totals[count] += locals()[var_name]

# Create a list to hold the data for the DataFrame
probabilities_data = {
    "Count": [],
    "Outcome": [],
    "Probability (%)": []
}

# Calculate probabilities and add them to the data list
for count, probabilities in outcome_count_totals.items():
    for outcome, total in probabilities.items():
        probability = (total / count_totals[count]) * 100 if count_totals[count] > 0 else 0
        probabilities_data["Count"].append(count)
        probabilities_data["Outcome"].append(outcome)
        probabilities_data["Probability (%)"].append(probability)

# Convert the dictionary to a DataFrame
outcome_probabilities_df = pd.DataFrame(probabilities_data)

# Display the DataFrame
print(outcome_probabilities_df.head(12))
   Count          Outcome  Probability (%)
0     00             ball        37.260262
1     00    called_strike        30.377849
2     00             foul        12.150589
3     00     hit_by_pitch         0.254618
4     00     ball_in_play        11.452868
5     00  swinging_strike         8.503814
6     01             ball        39.782505
7     01    called_strike        10.845548
8     01             foul        18.131405
9     01     hit_by_pitch         0.301596
10    01     ball_in_play        17.182298
11    01  swinging_strike        13.756648
In [44]:
pitch_types = ['changeup', 'curveball', 'cutter', 'fastball', 'slider', 'splitter']
counts = ['00', '01', '02', '10', '11', '12', '20', '21', '22', '30', '31', '32']
outcomes = ['ball', 'called_strike', 'foul', 'hit_by_pitch', 'ball_in_play', 'swinging_strike']

# Initialize dictionaries to store totals for outcomes based on pitch type and count
outcome_pitch_type_count_totals = {
    (pitch_type, count): {outcome: 0 for outcome in outcomes} for pitch_type in pitch_types for count in counts
}
pitch_type_count_totals = {(pitch_type, count): 0 for pitch_type in pitch_types for count in counts}
count_totals = {count: 0 for count in counts}

# Dynamically calculate totals for each outcome based on pitch type and count
for pitch_type in pitch_types:
    for count in counts:
        for outcome in outcomes:
            # Construct the variable name
            var_name = f"{pitch_type}_{count}_{outcome}_total"
            
            # Check if the variable exists
            if var_name in locals():
                # Add to the specific outcome, pitch type, and count total
                outcome_pitch_type_count_totals[(pitch_type, count)][outcome] += locals()[var_name]
                
                # Add to the overall pitch type and count total
                pitch_type_count_totals[(pitch_type, count)] += locals()[var_name]
                
                # Add to the total for all pitches on this count
                count_totals[count] += locals()[var_name]

# Create a list to hold the data for the DataFrame
probabilities_data = {
    "Pitch Type": [],
    "Count": [],
    "Outcome": [],
    "Probability (%)": [],  # Existing probability
    "Count-Based Probability (%)": []  # New column
}

# Calculate probabilities and add them to the data list
for (pitch_type, count), outcome_totals in outcome_pitch_type_count_totals.items():
    total_pitches = pitch_type_count_totals[(pitch_type, count)]
    total_count_pitches = count_totals[count]
    for outcome, total in outcome_totals.items():
        # Probability relative to total pitches of this pitch type and count
        probability = (total / total_pitches) * 100 if total_pitches > 0 else 0
        
        # Probability relative to all pitches on this count
        count_based_probability = (total / total_count_pitches) * 100 if total_count_pitches > 0 else 0
        
        probabilities_data["Pitch Type"].append(pitch_type)
        probabilities_data["Count"].append(count)
        probabilities_data["Outcome"].append(outcome)
        probabilities_data["Probability (%)"].append(probability)
        probabilities_data["Count-Based Probability (%)"].append(count_based_probability)

# Convert the dictionary to a DataFrame
outcome_pitchtypes_probabilities_df = pd.DataFrame(probabilities_data)

# Display the DataFrame
print(outcome_pitchtypes_probabilities_df.head(24))
   Pitch Type Count          Outcome  Probability (%)  \
0    changeup    00             ball        41.762100   
1    changeup    00    called_strike        22.469280   
2    changeup    00             foul        10.072724   
3    changeup    00     hit_by_pitch         0.108668   
4    changeup    00     ball_in_play        12.296247   
5    changeup    00  swinging_strike        13.290981   
6    changeup    01             ball        45.534830   
7    changeup    01    called_strike         5.983823   
8    changeup    01             foul        13.890723   
9    changeup    01     hit_by_pitch         0.074282   
10   changeup    01     ball_in_play        18.793331   
11   changeup    01  swinging_strike        15.723011   
12   changeup    02             ball        49.747428   
13   changeup    02    called_strike         1.908326   
14   changeup    02             foul        14.087933   
15   changeup    02     hit_by_pitch         0.149673   
16   changeup    02     ball_in_play        19.681946   
17   changeup    02  swinging_strike        14.424696   
18   changeup    10             ball        38.124350   
19   changeup    10    called_strike        16.896462   
20   changeup    10             foul        12.747138   
21   changeup    10     hit_by_pitch         0.078044   
22   changeup    10     ball_in_play        15.647763   
23   changeup    10  swinging_strike        16.506243   

    Count-Based Probability (%)  
0                      2.753406  
1                      1.481416  
2                      0.664102  
3                      0.007165  
4                      0.810701  
5                      0.876284  
6                      5.963809  
7                      0.783716  
8                      1.819302  
9                      0.009729  
10                     2.461409  
11                     2.059281  
12                     5.469505  
13                     0.209812  
14                     1.548905  
15                     0.016456  
16                     2.163941  
17                     1.585930  
18                     4.323774  
19                     1.916268  
20                     1.445684  
21                     0.008851  
22                     1.774650  
23                     1.872013  
In [45]:
outcome_probabilities_df.head(12)
Out[45]:
Count Outcome Probability (%)
0 00 ball 37.260262
1 00 called_strike 30.377849
2 00 foul 12.150589
3 00 hit_by_pitch 0.254618
4 00 ball_in_play 11.452868
5 00 swinging_strike 8.503814
6 01 ball 39.782505
7 01 called_strike 10.845548
8 01 foul 18.131405
9 01 hit_by_pitch 0.301596
10 01 ball_in_play 17.182298
11 01 swinging_strike 13.756648
In [46]:
probabilities_df.head(12)
Out[46]:
Count Pitch Type Probability (%)
0 00 changeup 6.593073
1 00 curveball 9.456704
2 00 cutter 9.137053
3 00 fastball 52.074975
4 00 slider 21.128367
5 00 splitter 1.609828
6 01 changeup 13.097246
7 01 curveball 8.073896
8 01 cutter 8.266312
9 01 fastball 42.928179
10 01 slider 23.620660
11 01 splitter 4.013707
In [47]:
count_probabilities_df
Out[47]:
Count Probability (%)
0 00 25.665042
1 01 13.084860
2 02 6.876384
3 10 9.588322
4 11 10.075603
5 12 9.890450
6 20 3.177437
7 21 5.135328
8 22 8.366656
9 30 0.962680
10 31 2.107966
11 32 5.069273
In [48]:
pitch_type_df
Out[48]:
Pitch Type Total Pitches Percentage (%)
0 changeup 72807 10.298238
1 curveball 58232 8.236667
2 cutter 57869 8.185322
3 fastball 338431 47.869615
4 slider 158277 22.387604
5 splitter 21369 3.022554
In [49]:
outcome_pitchtypes_probabilities_df.head(12)
Out[49]:
Pitch Type Count Outcome Probability (%) Count-Based Probability (%)
0 changeup 00 ball 41.762100 2.753406
1 changeup 00 called_strike 22.469280 1.481416
2 changeup 00 foul 10.072724 0.664102
3 changeup 00 hit_by_pitch 0.108668 0.007165
4 changeup 00 ball_in_play 12.296247 0.810701
5 changeup 00 swinging_strike 13.290981 0.876284
6 changeup 01 ball 45.534830 5.963809
7 changeup 01 called_strike 5.983823 0.783716
8 changeup 01 foul 13.890723 1.819302
9 changeup 01 hit_by_pitch 0.074282 0.009729
10 changeup 01 ball_in_play 18.793331 2.461409
11 changeup 01 swinging_strike 15.723011 2.059281
In [50]:
balls_in_play_df = final_grouped_df[final_grouped_df['outcome_'] == 'ball_in_play'].reset_index(drop=True)
In [51]:
balls_in_play_df
Out[51]:
pitch_type count outcome_ pitches_sum ba_mean slg_mean hits_sum abs_sum whiffs_sum swings_sum takes_sum pitcher_run_exp_mean pitcher_run_exp_median pa_sum singles_sum doubles_sum triples_sum hrs_sum so_sum k_percent_mean bb_sum bb_percent_mean obp_mean pitcher_run_value_per_100_mean pitcher_run_value_per_100_median
0 changeup 00 ball_in_play 1471 0.336722 0.521123 485.0 1438.0 0 1471 0 -0.248910 0.0 1471.0 321.0 101.0 3.0 60.0 0.0 0.0 0.0 0.0 0.333651 -4.500991 0.837500
1 changeup 01 ball_in_play 2277 0.309591 0.459275 691.0 2247.0 0 2277 0 -0.319638 -0.1 2277.0 471.0 143.0 13.0 64.0 0.0 0.0 0.0 0.0 0.307752 -5.030436 -1.562500
2 changeup 02 ball_in_play 1052 0.284812 0.389893 286.0 1044.0 0 1052 0 -0.265049 0.1 1052.0 216.0 44.0 4.0 22.0 0.0 0.0 0.0 0.0 0.282990 -8.913591 1.080000
3 changeup 10 ball_in_play 1203 0.307883 0.508877 369.0 1187.0 0 1203 0 0.022642 0.2 1203.0 228.0 78.0 10.0 53.0 0.0 0.0 0.0 0.0 0.303642 0.981440 7.130000
4 changeup 11 ball_in_play 2108 0.318754 0.537508 615.0 2086.0 0 2108 0 -0.221522 0.0 2108.0 401.0 105.0 10.0 99.0 0.0 0.0 0.0 0.0 0.314937 -6.855244 0.283333
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
66 splitter 20 ball_in_play 34 0.260870 0.358696 9.0 34.0 0 34 0 0.104348 0.3 34.0 6.0 2.0 0.0 1.0 0.0 0.0 0.0 0.0 0.260870 7.135145 14.750000
67 splitter 21 ball_in_play 189 0.347686 0.732784 61.0 189.0 0 189 0 -0.239216 0.0 189.0 31.0 14.0 3.0 13.0 0.0 0.0 0.0 0.0 0.347686 -12.067538 1.400000
68 splitter 22 ball_in_play 544 0.323410 0.523277 169.0 539.0 0 544 0 -0.461446 -0.3 544.0 110.0 36.0 5.0 18.0 0.0 0.0 0.0 0.0 0.322072 -7.571075 -6.100000
69 splitter 31 ball_in_play 20 0.416667 0.683333 8.0 20.0 0 20 0 0.060000 0.2 20.0 6.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.416667 2.725000 16.000000
70 splitter 32 ball_in_play 167 0.309509 0.520789 57.0 167.0 0 167 0 -0.080702 0.2 167.0 32.0 17.0 1.0 7.0 0.0 0.0 0.0 0.0 0.309509 0.554942 14.800000

71 rows × 25 columns

In [52]:
totals_balls_in_play = balls_in_play_df['pitches_sum'].sum()

single_prob = balls_in_play_df['singles_sum'].sum() / totals_balls_in_play
double_prob = balls_in_play_df['doubles_sum'].sum() / totals_balls_in_play
triple_prob = balls_in_play_df['triples_sum'].sum() / totals_balls_in_play
home_run_prob = balls_in_play_df['hrs_sum'].sum() / totals_balls_in_play

outs_prob = 1 - (single_prob + double_prob + triple_prob + home_run_prob)
In [53]:
count_pitch_probabilities = (
    probabilities_df.groupby("Count")
    .apply(lambda x: dict(zip(x["Pitch Type"], x["Probability (%)"])))
    .to_dict()
)

# Build outcome probabilities for each pitch type and count
outcome_probabilities = (
    outcome_pitchtypes_probabilities_df.groupby(["Count", "Pitch Type"])
    .apply(lambda x: dict(zip(x["Outcome"], x["Probability (%)"])))
    .to_dict()
)
In [54]:
from tqdm import tqdm

# Calculate granular probabilities from balls_in_play_df
granular_probabilities = (
    balls_in_play_df.groupby(["count", "pitch_type"])
    .agg({
        "singles_sum": "sum",
        "doubles_sum": "sum",
        "triples_sum": "sum",
        "hrs_sum": "sum",
        "pitches_sum": "sum",
    })
)

granular_probabilities["single_prob"] = granular_probabilities["singles_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["double_prob"] = granular_probabilities["doubles_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["triple_prob"] = granular_probabilities["triples_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["home_run_prob"] = granular_probabilities["hrs_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["outs_prob"] = 1 - (
    granular_probabilities["single_prob"]
    + granular_probabilities["double_prob"]
    + granular_probabilities["triple_prob"]
    + granular_probabilities["home_run_prob"]
)
granular_probabilities = granular_probabilities.fillna(0)  # Handle any NaNs due to division

def resolve_ball_in_play(ball_in_play_probabilities):
    randomness = np.random.uniform(0.90, 1.10, size=len(ball_in_play_probabilities))
    adjusted_probabilities = np.array(list(ball_in_play_probabilities.values())) * randomness
    adjusted_probabilities /= adjusted_probabilities.sum()  # Normalize
    outcomes = list(ball_in_play_probabilities.keys())
    return np.random.choice(outcomes, p=adjusted_probabilities)

# Function to fetch granular probabilities
def get_granular_probabilities(count, pitch_type):
    try:
        probs = granular_probabilities.loc[(count, pitch_type)]
        default_probs = {
            "out": probs["outs_prob"],
            "single": probs["single_prob"],
            "double": probs["double_prob"],
            "triple": probs["triple_prob"],
            "home_run": probs["home_run_prob"],
            "double_play": 0.02,  # Default small probability for double play
        }
    except KeyError:
        # Default probabilities if the specific count/pitch_type combination is not found
        default_probs = {
            "out": 0.6,
            "single": 0.2,
            "double": 0.1,
            "triple": 0.05,
            "home_run": 0.03,
            "double_play": 0.02,
        }
    
    # Normalize probabilities
    total = sum(default_probs.values())
    return {k: v / total for k, v in default_probs.items()}

# Function to advance runners on base
def advance_runners(bases, result, outs):
    """
    Updates the bases and calculates runs scored based on the result of a ball in play.
    
    Args:
        bases (list): List representing the bases [first, second, third].
        result (str): Outcome of the ball in play (e.g., 'single', 'double').
        outs (int): Current number of outs.

    Returns:
        new_bases (list): Updated base states.
        runs_scored (int): Number of runs scored in the play.
        outs (int): Updated number of outs.
    """
    new_bases = [0, 0, 0]
    runs_scored = 0

    if result == "out":
        outs += 1

    elif result == "single":
        runs_scored += bases[2]  # Runner on third scores
        new_bases[2] = bases[1]  # Runner on second moves to third
        new_bases[1] = bases[0]  # Runner on first moves to second
        new_bases[0] = 1         # Batter takes first

    elif result == "double":
        runs_scored += bases[2] + bases[1]  # Runners on third and second score
        new_bases[2] = bases[0]  # Runner on first moves to third
        new_bases[1] = 1         # Batter takes second

    elif result == "triple":
        runs_scored += bases[2] + bases[1] + bases[0]  # All runners score
        new_bases[2] = 1  # Batter takes third

    elif result == "home_run":
        runs_scored += bases[2] + bases[1] + bases[0] + 1  # All runners and batter score

    elif result == "double_play":
        if outs < 2:
            outs += 2
            if outs < 3:
                runs_scored += bases[2]
            new_bases[2] = bases[1]
            new_bases[1] = 0
            new_bases[0] = 0
    if outs >= 3:
        runs_scored = 0
        
    if runs_scored > 0:
        print(f"Runs scored: {runs_scored}, Bases after play {new_bases}")

    elif result in ["walk", "hit_by_pitch"]:
        if bases[0] and bases[1] and bases[2]:
            runs_scored += 1
        new_bases[2] = bases[1]
        new_bases[1] = bases[0]
        new_bases[0] = 1
        
    if outs >= 3:
        runs_scored = 0
        
    if runs_scored > 0:
        print(f"Runs scored: {runs_scored}, Bases after play: {new_bases}")

    return new_bases, runs_scored, outs


# Adjust probabilities dynamically
def adjust_ball_in_play_probabilities(bases, outs, count, pitch_type):
    # Start with granular probabilities
    ball_in_play_probabilities = get_granular_probabilities(count, pitch_type)
    
    if outs == 2:
        ball_in_play_probabilities["double_play"] = 0
        total_prob = sum(ball_in_play_probabilities.values())
        ball_in_play_probabilities = {k: v / total_prob for k, v in ball_in_play_probabilities.items()}

    # Increase double play probability if runner on first and 0 or 1 outs
    if bases[0] == 1 and outs < 2:
        ball_in_play_probabilities["double_play"] += 0.15  # Boost double play odds
        ball_in_play_probabilities["out"] -= 0.1          # Reduce other out odds
        ball_in_play_probabilities["single"] -= 0.05      # Reduce single odds

    # Clamp probabilities to be non-negative
    ball_in_play_probabilities = {k: max(v, 0) for k, v in ball_in_play_probabilities.items()}

    # Normalize probabilities to sum to 1
    total_prob = sum(ball_in_play_probabilities.values())
    ball_in_play_probabilities = {k: v / total_prob for k, v in ball_in_play_probabilities.items()}

    return ball_in_play_probabilities

# Updated simulate_at_bat function
def simulate_at_bat(bases, outs, game_number, inning_number):
    balls = 0
    strikes = 0
    batter_out = False
    runs_scored = 0
    strikeout = 0
    walk = 0
    hit = 0
    pitches = 0

    while not batter_out:
        pitches += 1
        # Current count
        count = f"{balls}{strikes}"

        # Select pitch type based on count probabilities
        if count in count_pitch_probabilities:
            pitch_probs = count_pitch_probabilities[count]
            pitch_type = np.random.choice(
                list(pitch_probs.keys()),
                p=np.array(list(pitch_probs.values())) / 100  # Normalize to sum to 1
            )
        else:
            # Fallback if count not in dictionary
            pitch_type = np.random.choice(list(count_pitch_probabilities["00"].keys()))

        # Get outcome probabilities for the selected pitch type and count
        pitch_outcome_probs = outcome_probabilities.get((count, pitch_type), None)
        if pitch_outcome_probs:
            outcomes = list(pitch_outcome_probs.keys())
            probabilities = np.array(list(pitch_outcome_probs.values())) / 100

            # Add randomness to probabilities
            randomness = np.random.uniform(0.90, 1.10, size=len(probabilities))
            adjusted_probabilities = probabilities * randomness
            adjusted_probabilities /= adjusted_probabilities.sum()  # Normalize

            # Select outcome
            outcome = np.random.choice(outcomes, p=adjusted_probabilities)
        else:
            # Fallback probabilities
            outcomes = ["ball", "called_strike", "foul", "hit_by_pitch", "ball_in_play", "swinging_strike"]
            outcome = np.random.choice(outcomes, p=[0.3, 0.2, 0.1, 0.02, 0.28, 0.1])

        # Print pitch outcome
        print(f"Game {game_number}, Inning {inning_number}, Outs: {outs}, Count: {balls}-{strikes}, "
              f"Pitch Type: {pitch_type}, Outcome: {outcome}")

        # Handle outcomes
        if outcome in ["swinging_strike", "called_strike"]:
            strikes += 1
            if strikes == 3:
                batter_out = True
                outs += 1
                print("Batter struck out!")
                strikeout = 1

        elif outcome == "ball":
            balls += 1
            if balls == 4:  # Walk
                print("Batter walked!")
                bases, new_runs, outs = advance_runners(bases, "walk", outs)
                runs_scored += new_runs
                walk = 1
                return runs_scored, bases, outs, strikeout, walk, hit, pitches

        elif outcome == "foul":
            if strikes < 2:
                strikes += 1
                print("Foul ball!")

        elif outcome == "ball_in_play":
            # Adjust probabilities and resolve result
            ball_in_play_probabilities = adjust_ball_in_play_probabilities(bases, outs, count, pitch_type)
            result = resolve_ball_in_play(ball_in_play_probabilities)
            if outs == 2:
                ball_in_play_probabilities["double_play"] = 0
                # Re-normalize probabilities
                total_prob = sum(ball_in_play_probabilities.values())
                ball_in_play_probabilities = {k: v / total_prob for k, v in ball_in_play_probabilities.items()}
                
                
            result = np.random.choice(
                list(ball_in_play_probabilities.keys()),
                p=list(ball_in_play_probabilities.values())
            )
            print(f"Ball in play! Result: {result}")
            
            if result == "out":
                batter_out = True
                outs += 1
                print("Batter is out!")
            elif result == "double_play":
                print("Double play!")
                bases, new_runs, outs = advance_runners(bases, result, outs)
                runs_scored += new_runs
                batter_out = True
            else:
                hit = 1
                bases, new_runs, outs = advance_runners(bases, result, outs)
                runs_scored += new_runs
                batter_out = True

        elif outcome == "hit_by_pitch":
            print("Batter hit by pitch!")
            bases, new_runs, outs = advance_runners(bases, "walk", outs)  # Treat HBP like a walk
            runs_scored += new_runs
            return runs_scored, bases, outs, strikeout, walk, hit, pitches

    return runs_scored, bases, outs, strikeout, walk, hit, pitches

# Function to simulate an inning
def simulate_inning(game_number, inning_number):
    bases = [0, 0, 0]  # Bases: [first, second, third]
    outs = 0
    inning_score = 0
    inning_strikeouts = 0
    inning_walks = 0
    inning_hits = 0
    inning_pitches = 0

    while outs < 3:
        runs, bases, outs, strikeout, walk, hit, pitches = simulate_at_bat(bases, outs, game_number, inning_number)
        inning_score += runs
        inning_strikeouts += strikeout
        inning_walks += walk
        inning_hits += hit
        inning_pitches += pitches
              
    bases = [0, 0, 0]
    print(f"Inning completed. Bases emptied. Score: {inning_score}")

    return inning_score, inning_strikeouts, inning_walks, inning_hits, inning_pitches

# Function to simulate a game
def simulate_game(game_number):
    inning_scores = []
    game_strikeouts = 0
    game_walks = 0
    game_hits = 0
    game_pitches = 0
    for inning_number in range(1, 10):  # 9 innings per game
        print(f"Game {game_number}, Inning {inning_number}: Starting.")
        inning_score, inning_strikeouts, inning_walks, inning_hits, inning_pitches = simulate_inning(game_number, inning_number)
        inning_scores.append(inning_score)
        game_strikeouts += inning_strikeouts
        game_walks += inning_walks
        game_hits += inning_hits
        game_pitches += inning_pitches
        print(f"Game {game_number}, Inning {inning_number}: Completed with score {inning_score}.")
    
    total_game_score = sum(inning_scores)
    print(f"Game {game_number} completed. Total Score: {total_game_score}")
    return total_game_score, 9, game_strikeouts, game_walks, game_hits, game_pitches

# Simulate 32 games (Season Simulation)
def simulate_season(n_games=32, seed=None):
    if seed is not None:
        np.random.seed(seed)
    total_walks = 0
    total_strikeouts = 0
    total_hits = 0
    total_earned_runs = 0
    total_innings = 0
    total_pitches = 0
    game_results = []
    hits_allowed = []
    walks_allowed = []
    strikeouts_recorded = []

    for game_number in tqdm(range(1, n_games + 1), desc="Simulating Games"):
        game_score, innings, game_strikeouts, game_walks, game_hits, game_pitches = simulate_game(game_number)
        game_results.append(game_score)
        hits_allowed.append(game_hits)
        walks_allowed.append(game_walks)
        strikeouts_recorded.append(game_strikeouts)
        total_walks += game_walks
        total_hits += game_hits
        total_earned_runs += game_score
        total_innings += innings
        total_strikeouts += game_strikeouts
        total_pitches += game_pitches

    # Calculate WHIP and ERA
    whip = total_walks / total_innings + total_hits / total_innings
    era = (total_earned_runs * 9) / total_innings

    # Results summary
    print(f"Results over {n_games} games:")
    print(f"Total Runs Scored: {total_earned_runs}")
    print(f"Total Hits Given Up: {total_hits}")
    print(f"Total Strikeouts: {total_strikeouts}")
    print(f"Total Walks Given Up: {total_walks}")
    print(f"Total Innings Pitched: {total_innings}")
    print(f"Total Pitches Thrown: {total_pitches}")
    print(f"WHIP: {whip:.2f}")
    print(f"ERA: {era:.2f}")
    print(f"Average Runs Per Game: {np.mean(game_results):.2f}")

    metrics = {
        "Runs Allowed": game_results,
        "Hits Allowed": hits_allowed,
        "Walks Allowed": walks_allowed,
        "Strikeouts": strikeouts_recorded,
    }

    # Plot each metric as a histogram
    for metric, values in metrics.items():
        plt.hist(values, bins=10, edgecolor="black", alpha=0.7)
        plt.title(f"{metric} Distribution ({n_games} Games)")
        plt.xlabel(metric)
        plt.ylabel("Frequency")
        plt.grid(True, linestyle="--", alpha=0.7)
        plt.show()

    # Save results to CSV
    # results_df = pd.DataFrame({"Game": range(1, n_games + 1), "Runs Scored": game_results})
    # results_df.to_csv("simulation_results.csv", index=False)
    # print("Simulation results saved to 'simulation_results.csv'.")

# Run the simulation
simulate_season(n_games=32)
Simulating Games:  25%|██▌       | 8/32 [00:00<00:00, 37.63it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 0
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 8: Completed with score 2.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 9: Completed with score 1.
Game 2 completed. Total Score: 3
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 9: Completed with score 2.
Game 3 completed. Total Score: 2
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 5: Completed with score 1.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 1
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 6: Completed with score 2.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 3: Completed with score 1.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 1
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 0
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 8, Inning 5: Completed with score 4.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 7: Completed with score 1.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 8: Completed with score 1.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 6
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 9, Inning 4: Completed with score 2.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 2
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 10, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 7: Completed with score 1.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 5
Game 10, Inning 8: Completed with score 5.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 6
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 9: Completed with score 1.
Game 11 completed. Total Score: 1
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 3-0, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 12, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Simulating Games:  50%|█████     | 16/32 [00:00<00:00, 32.67it/s]
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 9: Completed with score 1.
Game 12 completed. Total Score: 1
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 2, Bases after play [0, 0, 1]
Runs scored: 2, Bases after play: [0, 0, 1]
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 13, Inning 3: Completed with score 2.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 9: Completed with score 1.
Game 13 completed. Total Score: 3
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 9: Completed with score 1.
Game 14 completed. Total Score: 1
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 4: Completed with score 1.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 5: Completed with score 2.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 6: Completed with score 1.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 4
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 16, Inning 2: Completed with score 1.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 16, Inning 9: Completed with score 2.
Game 16 completed. Total Score: 3
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 1: Completed with score 1.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 17, Inning 3: Completed with score 2.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 17, Inning 6: Completed with score 3.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 17, Inning 7: Completed with score 3.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 9
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 2: Completed with score 2.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 6: Completed with score 2.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 4
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 5: Completed with score 1.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 19, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 6: Completed with score 1.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Simulating Games:  78%|███████▊  | 25/32 [00:00<00:00, 37.36it/s]
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 2
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 20, Inning 2: Completed with score 2.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 7: Completed with score 1.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 8: Completed with score 1.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 20, Inning 9: Completed with score 3.
Game 20 completed. Total Score: 7
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 0
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 22, Inning 4: Completed with score 3.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 3, Bases after play [0, 0, 1]
Runs scored: 3, Bases after play: [0, 0, 1]
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 7
Game 22, Inning 8: Completed with score 7.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 10
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 1: Completed with score 1.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 6: Completed with score 2.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 3
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 0
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 25, Inning 9: Completed with score 4.
Game 25 completed. Total Score: 4
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 1: Completed with score 1.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 6: Completed with score 1.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 2
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 27, Inning 3: Completed with score 2.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 2
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 4: Completed with score 1.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 5: Completed with score 2.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 3
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 6: Completed with score 1.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 29, Inning 9: Completed with score 3.
Game 29 completed. Total Score: 4
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 3: Completed with score 1.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 1
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 37.60it/s]
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 4: Completed with score 2.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 2
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 6: Completed with score 1.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 32, Inning 8: Completed with score 3.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 4
Results over 32 games:
Total Runs Scored: 93
Total Hits Given Up: 242
Total Strikeouts: 280
Total Walks Given Up: 90
Total Innings Pitched: 288
Total Pitches Thrown: 4628
WHIP: 1.15
ERA: 2.91
Average Runs Per Game: 2.91
In [55]:
def visualize_game_metrics(n_games, game_runs, game_hits, game_walks, game_strikeouts):
    games = range(1, n_games + 1)
    
    plt.figure(figsize=(12, 6))
    
    # Plot each metric
    plt.plot(games, game_runs, label="Runs Allowed", marker="o")
    plt.plot(games, game_hits, label="Hits Allowed", marker="s")
    plt.plot(games, game_walks, label="Walks Given", marker="^")
    plt.plot(games, game_strikeouts, label="Strikeouts", marker="x")
    
    # Customize the plot
    plt.title("Game-by-Game Metrics")
    plt.xlabel("Game Number")
    plt.ylabel("Count")
    plt.legend()
    plt.grid(True, linestyle="--", alpha=0.7)
    plt.xticks(games)
    plt.tight_layout()
    
    # Display the plot
    plt.show()
In [56]:
from tqdm import tqdm

# Calculate granular probabilities from balls_in_play_df
granular_probabilities = (
    balls_in_play_df.groupby(["count", "pitch_type"])
    .agg({
        "singles_sum": "sum",
        "doubles_sum": "sum",
        "triples_sum": "sum",
        "hrs_sum": "sum",
        "pitches_sum": "sum",
    })
)

granular_probabilities["single_prob"] = granular_probabilities["singles_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["double_prob"] = granular_probabilities["doubles_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["triple_prob"] = granular_probabilities["triples_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["home_run_prob"] = granular_probabilities["hrs_sum"] / granular_probabilities["pitches_sum"]
granular_probabilities["outs_prob"] = 1 - (
    granular_probabilities["single_prob"]
    + granular_probabilities["double_prob"]
    + granular_probabilities["triple_prob"]
    + granular_probabilities["home_run_prob"]
)
granular_probabilities = granular_probabilities.fillna(0)  # Handle any NaNs due to division

def resolve_ball_in_play(ball_in_play_probabilities):
    randomness = np.random.uniform(0.90, 1.10, size=len(ball_in_play_probabilities))
    adjusted_probabilities = np.array(list(ball_in_play_probabilities.values())) * randomness
    adjusted_probabilities /= adjusted_probabilities.sum()  # Normalize
    outcomes = list(ball_in_play_probabilities.keys())
    return np.random.choice(outcomes, p=adjusted_probabilities)

# Function to fetch granular probabilities
def get_granular_probabilities(count, pitch_type):
    try:
        probs = granular_probabilities.loc[(count, pitch_type)]
        default_probs = {
            "out": probs["outs_prob"],
            "single": probs["single_prob"],
            "double": probs["double_prob"],
            "triple": probs["triple_prob"],
            "home_run": probs["home_run_prob"],
            "double_play": 0.02,  # Default small probability for double play
        }
    except KeyError:
        # Default probabilities if the specific count/pitch_type combination is not found
        default_probs = {
            "out": 0.6,
            "single": 0.2,
            "double": 0.1,
            "triple": 0.05,
            "home_run": 0.03,
            "double_play": 0.02,
        }
    
    # Normalize probabilities
    total = sum(default_probs.values())
    return {k: v / total for k, v in default_probs.items()}

# Function to advance runners on base
def advance_runners(bases, result, outs):
    """
    Updates the bases and calculates runs scored based on the result of a ball in play.
    
    Args:
        bases (list): List representing the bases [first, second, third].
        result (str): Outcome of the ball in play (e.g., 'single', 'double').
        outs (int): Current number of outs.

    Returns:
        new_bases (list): Updated base states.
        runs_scored (int): Number of runs scored in the play.
        outs (int): Updated number of outs.
    """
    new_bases = [0, 0, 0]
    runs_scored = 0

    if result == "out":
        outs += 1

    elif result == "single":
        runs_scored += bases[2]  # Runner on third scores
        new_bases[2] = bases[1]  # Runner on second moves to third
        new_bases[1] = bases[0]  # Runner on first moves to second
        new_bases[0] = 1         # Batter takes first

    elif result == "double":
        runs_scored += bases[2] + bases[1]  # Runners on third and second score
        new_bases[2] = bases[0]  # Runner on first moves to third
        new_bases[1] = 1         # Batter takes second

    elif result == "triple":
        runs_scored += bases[2] + bases[1] + bases[0]  # All runners score
        new_bases[2] = 1  # Batter takes third

    elif result == "home_run":
        runs_scored += bases[2] + bases[1] + bases[0] + 1  # All runners and batter score

    elif result == "double_play":
        if outs < 2 and sum(bases) > 0:
            outs += 2
            runs_scored += bases[2] if outs < 3 else 0
            new_bases[2] = bases[1]
            new_bases[1] = 0
            new_bases[0] = 0
        else:
            result = "out"  # Fallback to a regular out
            outs += 1
        
    if runs_scored > 0:
        print(f"Runs scored: {runs_scored}, Bases after play {new_bases}")

    elif result in ["walk", "hit_by_pitch"]:
        if bases[0] and bases[1] and bases[2]:
            runs_scored += 1
        new_bases[2] = bases[1]
        new_bases[1] = bases[0]
        new_bases[0] = 1
        
    if outs >= 3:
        runs_scored = 0
        
    if runs_scored > 0:
        print(f"Runs scored: {runs_scored}, Bases after play: {new_bases}")

    return new_bases, runs_scored, outs


# Adjust probabilities dynamically
def adjust_ball_in_play_probabilities(bases, outs, count, pitch_type):
    # Start with granular probabilities
    ball_in_play_probabilities = get_granular_probabilities(count, pitch_type)
    
    if outs == 2 or sum(bases) == 0:
        ball_in_play_probabilities["double_play"] = 0

    # Increase double play probability if runner on first and 0 or 1 outs
    if bases[0] == 1 and outs < 2:
        ball_in_play_probabilities["double_play"] += 0.15  # Boost double play odds
        ball_in_play_probabilities["out"] -= 0.1          # Reduce other out odds
        ball_in_play_probabilities["single"] -= 0.05      # Reduce single odds

    # Clamp probabilities to be non-negative
    ball_in_play_probabilities = {k: max(v, 0) for k, v in ball_in_play_probabilities.items()}

    # Normalize probabilities to sum to 1
    total_prob = sum(ball_in_play_probabilities.values())
    ball_in_play_probabilities = {k: v / total_prob for k, v in ball_in_play_probabilities.items()}

    return ball_in_play_probabilities

# Updated simulate_at_bat function
pitch_combinations = []
all_pitch_data = []

def simulate_at_bat(bases, outs, game_number, inning_number, season_number):
    global pitch_combinations, all_pitch_data
    balls = 0
    strikes = 0
    batter_out = False
    runs_scored = 0
    strikeout = 0
    walk = 0
    hit = 0
    pitch_sequence = []

    while not batter_out:
        # Current count
        count = f"{balls}{strikes}"

        # Select pitch type based on count probabilities
        if count in count_pitch_probabilities:
            pitch_probs = count_pitch_probabilities[count]
            pitch_type = np.random.choice(
                list(pitch_probs.keys()),
                p=np.array(list(pitch_probs.values())) / 100  # Normalize to sum to 1
            )
        else:
            # Fallback if count not in dictionary
            pitch_type = np.random.choice(list(count_pitch_probabilities["00"].keys()))
            
        pitch_sequence.append(pitch_type)

        # Get outcome probabilities for the selected pitch type and count
        pitch_outcome_probs = outcome_probabilities.get((count, pitch_type), None)
        if pitch_outcome_probs:
            outcomes = list(pitch_outcome_probs.keys())
            probabilities = np.array(list(pitch_outcome_probs.values())) / 100

            # Add randomness to probabilities
            randomness = np.random.uniform(0.90, 1.10, size=len(probabilities))
            adjusted_probabilities = probabilities * randomness
            adjusted_probabilities /= adjusted_probabilities.sum()  # Normalize

            # Select outcome
            outcome = np.random.choice(outcomes, p=adjusted_probabilities)
        else:
            # Fallback probabilities
            outcomes = ["ball", "called_strike", "foul", "hit_by_pitch", "ball_in_play", "swinging_strike"]
            outcome = np.random.choice(outcomes, p=[0.3, 0.2, 0.1, 0.02, 0.28, 0.1])

        # Print pitch outcome
        print(f"Game {game_number}, Inning {inning_number}, Outs: {outs}, Count: {balls}-{strikes}, "
              f"Pitch Type: {pitch_type}, Outcome: {outcome}")
        
        result = None

        # Handle outcomes
        if outcome in ["swinging_strike", "called_strike"]:
            strikes += 1
            if strikes == 3:
                batter_out = True
                outs += 1
                print("Batter struck out!")
                strikeout = 1

        elif outcome == "ball":
            balls += 1
            if balls == 4:  # Walk
                print("Batter walked!")
                bases, new_runs, outs = advance_runners(bases, "walk", outs)
                runs_scored += new_runs
                walk = 1
                batter_out = True

        elif outcome == "foul":
            if strikes < 2:
                strikes += 1
                print("Foul ball!")
                

        elif outcome == "ball_in_play":
            # Adjust probabilities and resolve result
            ball_in_play_probabilities = adjust_ball_in_play_probabilities(bases, outs, count, pitch_type)
            result = resolve_ball_in_play(ball_in_play_probabilities)
            if outs == 2:
                ball_in_play_probabilities["double_play"] = 0
                # Re-normalize probabilities
                total_prob = sum(ball_in_play_probabilities.values())
                ball_in_play_probabilities = {k: v / total_prob for k, v in ball_in_play_probabilities.items()}
                
                
            result = np.random.choice(
                list(ball_in_play_probabilities.keys()),
                p=list(ball_in_play_probabilities.values())
            )
            print(f"Ball in play! Result: {result}")
            
            if result == "out":
                batter_out = True
                outs += 1
                print("Batter is out!")
            elif result == "double_play":
                print("Double play!")
                bases, new_runs, outs = advance_runners(bases, result, outs)
                runs_scored += new_runs
                batter_out = True
            else:
                hit = 1
                bases, new_runs, outs = advance_runners(bases, result, outs)
                runs_scored += new_runs
                batter_out = True

        elif outcome == "hit_by_pitch":
            print("Batter hit by pitch!")
            bases, new_runs, outs = advance_runners(bases, "walk", outs)  # Treat HBP like a walk
            runs_scored += new_runs
            result = "hit_by_pitch"
            batter_out = True

        all_pitch_data.append({
            "season_number": season_number,
            "game_number": game_number,
            "inning_number": inning_number,
            "count": count,
            "pitch_type": pitch_type,
            "outcome": outcome,
            "result": result,
        })
    pitch_combinations.append(tuple(pitch_sequence))
    return runs_scored, bases, outs, strikeout, walk, hit

# Function to simulate an inning
def simulate_inning(game_number, inning_number, season_number):
    bases = [0, 0, 0]  # Bases: [first, second, third]
    outs = 0
    inning_score = 0
    inning_strikeouts = 0
    inning_walks = 0
    inning_hits = 0

    while outs < 3:
        runs, bases, outs, strikeout, walk, hit = simulate_at_bat(bases, outs, game_number, inning_number, season_number)
        inning_score += runs
        inning_strikeouts += strikeout
        inning_walks += walk
        inning_hits += hit
              
    bases = [0, 0, 0]
    print(f"Inning completed. Bases emptied. Score: {inning_score}")

    return inning_score, inning_strikeouts, inning_walks, inning_hits

# Function to simulate a game
def simulate_game(game_number, season_number):
    inning_scores = []
    game_strikeouts = 0
    game_walks = 0
    game_hits = 0
    for inning_number in range(1, 10):  # 9 innings per game
        print(f"Game {game_number}, Inning {inning_number}: Starting.")
        inning_score, inning_strikeouts, inning_walks, inning_hits = simulate_inning(game_number, inning_number, season_number)
        inning_scores.append(inning_score)
        game_strikeouts += inning_strikeouts
        game_walks += inning_walks
        game_hits += inning_hits
        print(f"Game {game_number}, Inning {inning_number}: Completed with score {inning_score}.")
    
    total_game_score = sum(inning_scores)
    print(f"Game {game_number} completed. Total Score: {total_game_score}")
    return total_game_score, 9, game_strikeouts, game_walks, game_hits

# Simulate 32 games (Season Simulation)
def simulate_season(n_games=32, seed=None, season_number=1):
    if seed is not None:
        np.random.seed(seed)
    total_walks = 0
    total_strikeouts = 0
    total_hits = 0
    total_earned_runs = 0
    total_innings = 0
    game_results = []
    hits_allowed = []
    walks_allowed = []
    strikeouts_recorded = []

    for game_number in tqdm(range(1, n_games + 1), desc="Simulating Games"):
        game_score, innings, game_strikeouts, game_walks, game_hits = simulate_game(game_number, season_number)
        game_results.append(game_score)
        hits_allowed.append(game_hits)
        walks_allowed.append(game_walks)
        strikeouts_recorded.append(game_strikeouts)
        total_walks += game_walks
        total_hits += game_hits
        total_earned_runs += game_score
        total_innings += innings
        total_strikeouts += game_strikeouts

    # Calculate WHIP and ERA
    whip = total_walks / total_innings + total_hits / total_innings
    era = (total_earned_runs * 9) / total_innings
    
    metrics = {
        "Runs Allowed": game_results,
        "Hits Allowed": hits_allowed,
        "Walks Allowed": walks_allowed,
        "Strikeouts": strikeouts_recorded,
    }

    for metric, values in metrics.items():
        plt.hist(values, bins=10, edgecolor="black", alpha=0.7)
        plt.title(f"{metric} Distribution ({n_games} Games)")
        plt.xlabel(metric)
        plt.ylabel("Frequency")
        plt.grid(True, linestyle="--", alpha=0.7)
        plt.show()

    # Return results as a dictionary
    return {
        "total_runs": total_earned_runs,
        "total_hits": total_hits,
        "total_walks": total_walks,
        "total_strikeouts": total_strikeouts,
        "total_innings": total_innings,
        "whip": whip,
        "era": era,
        "average_runs_per_game": np.mean(game_results),
        "game_results": game_results,  # List of game scores for this season
    }


    # Save results to CSV
    # results_df = pd.DataFrame({"Game": range(1, n_games + 1), "Runs Scored": game_results})
    # results_df.to_csv("simulation_results.csv", index=False)
    # print("Simulation results saved to 'simulation_results.csv'.")

all_pitch_data = []
# Run the simulation
def simulate_multiple_seasons(num_seasons=15, n_games=32, seed=None):
    """
    Simulates multiple seasons and aggregates the results.
    
    Args:
        num_seasons (int): Number of seasons to simulate.
        n_games (int): Number of games per season.
        seed (int): Seed for reproducibility.

    Returns:
        results (list): A list of dictionaries containing results for each season.
    """
    global pitch_data
    if seed is not None:
        np.random.seed(seed)
    
    all_season_results = []  # To store results of each season

    for season_number in range(1, num_seasons + 1):
        print(f"Starting Season {season_number}...")
        season_seed = (seed + season_number) if seed else None  # Adjust seed for each season
        season_results = simulate_season(n_games=n_games, seed=season_seed, season_number=season_number)
        all_season_results.append(season_results)
        print(f"Season {season_number} completed. Results: {season_results}\n")

    return all_season_results

num_seasons_to_simulate = 15
import time
dynamic_seed = int(time.time())
all_results = simulate_multiple_seasons(num_seasons=num_seasons_to_simulate, n_games=32, seed=dynamic_seed)

# Print summary of results
for season_num, season_data in enumerate(all_results, start=1):
    total_hits = season_data["total_hits"]
    total_walks = season_data["total_walks"]
    total_strikeouts = season_data["total_strikeouts"]
    total_runs = season_data["total_runs"]
    total_innings = season_data["total_innings"]

    # Calculate per-nine metrics
    hits_per_nine = (total_hits * 9) / total_innings if total_innings > 0 else 0
    walks_per_nine = (total_walks * 9) / total_innings if total_innings > 0 else 0
    strikeouts_per_nine = (total_strikeouts * 9) / total_innings if total_innings > 0 else 0

    # Print results for the season
    print(
        f"Season {season_num}: Total Runs: {total_runs}, "
        f"Total Hits: {total_hits}, Total Walks: {total_walks}, "
        f"Total Strikeouts: {total_strikeouts}, ERA: {season_data['era']:.2f}, "
        f"WHIP: {season_data['whip']:.2f}, "
        f"Hits/9: {hits_per_nine:.2f}, Walks/9: {walks_per_nine:.2f}, "
        f"Strikeouts/9: {strikeouts_per_nine:.2f}"
    )
Starting Season 1...
Simulating Games:  16%|█▌        | 5/32 [00:00<00:00, 49.98it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 0
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 0
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 3, Inning 1: Completed with score 3.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 3
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 0
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 3: Completed with score 1.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 4: Completed with score 1.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 6, Inning 3: Completed with score 2.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 6
Game 6, Inning 4: Completed with score 6.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 5: Completed with score 1.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 9
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 0
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 1: Completed with score 1.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 6: Completed with score 2.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 9: Completed with score 2.
Game 8 completed. Total Score: 5
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 9, Inning 1: Completed with score 4.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 9, Inning 5: Completed with score 2.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 9, Inning 8: Completed with score 2.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 9, Inning 9: Completed with score 2.
Game 9 completed. Total Score: 10
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Simulating Games:  31%|███▏      | 10/32 [00:00<00:00, 38.99it/s]
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 10, Inning 1: Completed with score 3.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 4: Completed with score 2.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 7: Completed with score 1.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 6
Simulating Games:  47%|████▋     | 15/32 [00:00<00:00, 41.23it/s]
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 4: Completed with score 1.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 8: Completed with score 1.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 2
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 8: Completed with score 1.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 1
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 0
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 1: Completed with score 1.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 3: Completed with score 1.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 14, Inning 8: Completed with score 4.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 6
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 3-0, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 6: Completed with score 1.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 1
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 16, Inning 9: Completed with score 1.
Game 16 completed. Total Score: 1
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 1: Completed with score 1.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 1
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 18, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 1: Completed with score 1.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 5: Completed with score 1.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 2
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Simulating Games:  62%|██████▎   | 20/32 [00:00<00:00, 38.62it/s]
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 19, Inning 6: Completed with score 3.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 5
Game 19, Inning 7: Completed with score 5.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 8
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 0
Simulating Games:  75%|███████▌  | 24/32 [00:00<00:00, 38.00it/s]
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 3: Completed with score 2.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 4: Completed with score 2.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 5: Completed with score 1.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 5
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 22, Inning 7: Completed with score 2.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 2
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 3: Completed with score 3.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 3
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 24, Inning 6: Completed with score 4.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 4
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 1: Completed with score 1.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 5: Completed with score 1.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 2
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 4: Completed with score 1.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 1
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 4: Completed with score 1.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Simulating Games:  91%|█████████ | 29/32 [00:00<00:00, 40.84it/s]
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 7: Completed with score 1.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 8: Completed with score 1.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 3
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 4: Completed with score 2.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 2
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 0
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 1: Completed with score 2.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 30, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 30, Inning 8: Completed with score 3.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 9: Completed with score 2.
Game 30 completed. Total Score: 7
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 6: Completed with score 1.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 40.10it/s]
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 1
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 1: Completed with score 1.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 2: Completed with score 1.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 4: Completed with score 1.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 5: Completed with score 1.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 4
Season 1 completed. Results: {'total_runs': 91, 'total_hits': 268, 'total_walks': 79, 'total_strikeouts': 277, 'total_innings': 288, 'whip': 1.2048611111111112, 'era': 2.84375, 'average_runs_per_game': 2.84375, 'game_results': [0, 0, 3, 0, 2, 9, 0, 5, 10, 6, 2, 1, 0, 6, 1, 1, 1, 2, 8, 0, 5, 2, 3, 4, 2, 1, 3, 2, 0, 7, 1, 4]}

Starting Season 2...
Simulating Games:  31%|███▏      | 10/32 [00:00<00:00, 40.03it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 0
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 8: Completed with score 1.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 1
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 3, Inning 6: Completed with score 1.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 1
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 4: Completed with score 1.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 4, Inning 6: Completed with score 3.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 4
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 2: Completed with score 1.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 4: Completed with score 1.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 8: Completed with score 1.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 3
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 4: Completed with score 3.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 6: Completed with score 1.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 6, Inning 7: Completed with score 2.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 5
Game 6, Inning 9: Completed with score 5.
Game 6 completed. Total Score: 11
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 6: Completed with score 1.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 7, Inning 8: Completed with score 4.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 5
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 3-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 8, Inning 1: Completed with score 3.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 3
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 0
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 1: Completed with score 2.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 5
Game 10, Inning 5: Completed with score 5.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 6: Completed with score 1.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 8
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 11, Inning 7: Completed with score 3.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 3
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 7: Completed with score 2.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 8: Completed with score 1.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 3
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 7: Completed with score 1.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 1
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 2: Completed with score 1.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 3: Completed with score 1.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Simulating Games:  62%|██████▎   | 20/32 [00:00<00:00, 42.86it/s]
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 6: Completed with score 1.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 3
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 0
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 16, Inning 2: Completed with score 2.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 2
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 1: Completed with score 1.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 4, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 5: Completed with score 1.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 7: Completed with score 1.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 3
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 0
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 2: Completed with score 2.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 2
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 20, Inning 8: Completed with score 2.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 2
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 1: Completed with score 1.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 2: Completed with score 1.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 2
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 22, Inning 6: Completed with score 3.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 3
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 3: Completed with score 1.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 1
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Simulating Games:  78%|███████▊  | 25/32 [00:00<00:00, 37.79it/s]
Game 24, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 3-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 5: Completed with score 1.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 24, Inning 7: Completed with score 2.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 8: Completed with score 1.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 4
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 3, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 25, Inning 9: Completed with score 4.
Game 25 completed. Total Score: 4
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 2: Completed with score 1.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 26, Inning 4: Completed with score 2.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 5: Completed with score 1.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 4
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 27, Inning 3: Completed with score 3.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 9: Completed with score 1.
Game 27 completed. Total Score: 4
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 0
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 0
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 30, Inning 2: Completed with score 4.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 8: Completed with score 1.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 5
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 40.56it/s]
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 5: Completed with score 1.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 1
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 0

Season 2 completed. Results: {'total_runs': 83, 'total_hits': 250, 'total_walks': 79, 'total_strikeouts': 274, 'total_innings': 288, 'whip': 1.1423611111111112, 'era': 2.59375, 'average_runs_per_game': 2.59375, 'game_results': [0, 1, 1, 4, 3, 11, 5, 3, 0, 8, 3, 3, 1, 3, 0, 2, 3, 0, 2, 2, 2, 3, 1, 4, 4, 4, 4, 0, 0, 5, 1, 0]}

Starting Season 3...
Simulating Games:  16%|█▌        | 5/32 [00:00<00:00, 45.03it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 3: Completed with score 2.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 6: Completed with score 1.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 8: Completed with score 2.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 9: Completed with score 1.
Game 1 completed. Total Score: 6
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 0
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 0
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 2: Completed with score 1.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 1
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 5, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 3: Completed with score 1.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 4: Completed with score 1.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 6, Inning 3: Completed with score 2.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 5: Completed with score 1.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 6: Completed with score 3.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 6
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 3: Completed with score 2.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 7: Completed with score 1.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 3
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 5: Completed with score 1.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 1
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 6: Completed with score 1.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 1
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 0
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Simulating Games:  34%|███▍      | 11/32 [00:00<00:00, 48.05it/s]
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 2: Completed with score 1.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 11, Inning 3: Completed with score 2.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 3
Simulating Games:  53%|█████▎    | 17/32 [00:00<00:00, 48.39it/s]
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 3: Completed with score 1.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 1
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 13, Inning 1: Completed with score 3.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 3
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 3: Completed with score 1.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 4: Completed with score 1.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 5: Completed with score 1.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 3
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 3: Completed with score 1.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-0, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 5: Completed with score 1.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 7: Completed with score 2.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 4
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 16, Inning 7: Completed with score 3.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 3
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 0
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 0
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 1: Completed with score 2.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 2: Completed with score 2.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 19, Inning 3: Completed with score 4.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 7: Completed with score 2.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 19, Inning 8: Completed with score 4.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 14
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 6: Completed with score 1.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 20, Inning 9: Completed with score 2.
Game 20 completed. Total Score: 3
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 1: Completed with score 1.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 2, Bases after play [0, 0, 1]
Runs scored: 2, Bases after play: [0, 0, 1]
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 21, Inning 2: Completed with score 3.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 5: Completed with score 1.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 7: Completed with score 2.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 7
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 1: Completed with score 1.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 3-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 5: Completed with score 1.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 2
Simulating Games:  88%|████████▊ | 28/32 [00:00<00:00, 48.77it/s]
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 2: Completed with score 1.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 6: Completed with score 1.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 2
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 24, Inning 2: Completed with score 4.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 6: Completed with score 1.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 5
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 25, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 9: Completed with score 1.
Game 25 completed. Total Score: 1
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 2: Completed with score 1.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 9: Completed with score 1.
Game 26 completed. Total Score: 2
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 6: Completed with score 1.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 1
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 28, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 28, Inning 4: Completed with score 3.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 7: Completed with score 1.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 4
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 1: Completed with score 1.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 1
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-0, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 0
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 31, Inning 2: Completed with score 3.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 3
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 32, Inning 7: Completed with score 3.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 3
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 47.48it/s]
Season 3 completed. Results: {'total_runs': 85, 'total_hits': 232, 'total_walks': 101, 'total_strikeouts': 261, 'total_innings': 288, 'whip': 1.15625, 'era': 2.65625, 'average_runs_per_game': 2.65625, 'game_results': [6, 0, 0, 1, 2, 6, 3, 1, 1, 0, 3, 1, 3, 3, 4, 3, 0, 0, 14, 3, 7, 2, 2, 5, 1, 2, 1, 4, 1, 0, 3, 3]}

Starting Season 4...
Simulating Games:  16%|█▌        | 5/32 [00:00<00:00, 42.74it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 3: Completed with score 1.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 1, Inning 4: Completed with score 3.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 1, Inning 6: Completed with score 3.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 7
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 6, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 0
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 3, Inning 2: Completed with score 1.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 4: Completed with score 2.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 6: Completed with score 2.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 5
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 5: Completed with score 1.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 4, Inning 9: Completed with score 2.
Game 4 completed. Total Score: 3
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 1: Completed with score 2.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 4: Completed with score 2.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 6: Completed with score 2.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 8: Completed with score 1.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 5, Inning 9: Completed with score 3.
Game 5 completed. Total Score: 10
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 6, Inning 1: Completed with score 2.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 2
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 2: Completed with score 1.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 3: Completed with score 2.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 7: Completed with score 2.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 5
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 8, Inning 1: Completed with score 3.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 6: Completed with score 2.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 7: Completed with score 1.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 6
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 3: Completed with score 1.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 8: Completed with score 1.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 2
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 2: Completed with score 1.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 7: Completed with score 2.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 8: Completed with score 1.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 4
Simulating Games:  75%|███████▌  | 24/32 [00:00<00:00, 36.90it/s]
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 11, Inning 2: Completed with score 2.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 8: Completed with score 1.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 3
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 12, Inning 3: Completed with score 3.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 4: Completed with score 1.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 6: Completed with score 1.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 7: Completed with score 2.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 7
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 1: Completed with score 1.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 13, Inning 2: Completed with score 2.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 4: Completed with score 1.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 5: Completed with score 1.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 5
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 0
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 0
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 16, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 0
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 8: Completed with score 1.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 1
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 4: Completed with score 2.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 2
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 0
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 0
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 1: Completed with score 2.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 7: Completed with score 1.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 8: Completed with score 2.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 5
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 6: Completed with score 1.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 1
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 3: Completed with score 1.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 5
Game 23, Inning 8: Completed with score 5.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 6
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 24, Inning 6: Completed with score 2.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 24, Inning 9: Completed with score 3.
Game 24 completed. Total Score: 5
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 36.87it/s]
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 3: Completed with score 1.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 4: Completed with score 1.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 5: Completed with score 1.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 25, Inning 8: Completed with score 2.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 5
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 3: Completed with score 1.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 26, Inning 4: Completed with score 4.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 9: Completed with score 1.
Game 26 completed. Total Score: 6
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 0
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 6: Completed with score 1.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 1
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 0
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 30, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 30, Inning 2: Completed with score 3.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 6: Completed with score 2.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 8: Completed with score 2.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 9: Completed with score 1.
Game 30 completed. Total Score: 8
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 0
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 1: Completed with score 1.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 32, Inning 3: Completed with score 2.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 7: Completed with score 1.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 4

Season 4 completed. Results: {'total_runs': 103, 'total_hits': 272, 'total_walks': 91, 'total_strikeouts': 276, 'total_innings': 288, 'whip': 1.2604166666666665, 'era': 3.21875, 'average_runs_per_game': 3.21875, 'game_results': [7, 0, 5, 3, 10, 2, 5, 6, 2, 4, 3, 7, 5, 0, 0, 0, 1, 2, 0, 0, 5, 1, 6, 5, 5, 6, 0, 1, 0, 8, 0, 4]}

Starting Season 5...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 50.41it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 2: Completed with score 1.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 1
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 6: Completed with score 1.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 1
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 4: Completed with score 2.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 2
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 3: Completed with score 1.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 8: Completed with score 1.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 2
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 2: Completed with score 2.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 3: Completed with score 2.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 4
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 2: Completed with score 1.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 4: Completed with score 3.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 3, Bases after play [0, 0, 1]
Runs scored: 3, Bases after play: [0, 0, 1]
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 6, Inning 7: Completed with score 4.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 8
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 3: Completed with score 2.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 4: Completed with score 2.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: hit_by_pitch
Batter hit by pitch!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 4
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 3: Completed with score 1.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 5: Completed with score 1.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 6: Completed with score 1.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: swinging_strike
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 3
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 0
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 3: Completed with score 1.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Simulating Games:  38%|███▊      | 12/32 [00:00<00:00, 45.67it/s]
Game 10, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 4, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 8: Completed with score 1.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 9: Completed with score 2.
Game 10 completed. Total Score: 4
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 0
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 1: Completed with score 1.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 7: Completed with score 1.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 2
Simulating Games:  53%|█████▎    | 17/32 [00:00<00:00, 45.08it/s]
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 9: Completed with score 1.
Game 13 completed. Total Score: 1
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 6: Completed with score 1.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 8: Completed with score 2.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 3
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 1: Completed with score 1.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 8: Completed with score 1.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 2
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 16, Inning 1: Completed with score 1.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 1
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 0
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 3: Completed with score 1.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 4: Completed with score 1.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 8: Completed with score 1.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 3
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 5
Game 19, Inning 3: Completed with score 5.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 5: Completed with score 1.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 7: Completed with score 1.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 8: Completed with score 1.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 8
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 5: Completed with score 1.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Simulating Games:  69%|██████▉   | 22/32 [00:00<00:00, 43.19it/s]
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 8: Completed with score 1.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 2
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 8: Completed with score 2.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 2
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 1: Completed with score 1.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 3: Completed with score 1.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 5: Completed with score 1.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 3
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 3: Completed with score 1.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 23, Inning 4: Completed with score 4.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 7: Completed with score 3.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 9: Completed with score 1.
Game 23 completed. Total Score: 9
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 0
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 25, Inning 4: Completed with score 4.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 5: Completed with score 1.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 25, Inning 7: Completed with score 3.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 8
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 2: Completed with score 1.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 9: Completed with score 1.
Game 26 completed. Total Score: 2
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 27, Inning 1: Completed with score 2.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 5
Game 27, Inning 3: Completed with score 5.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 27, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 8: Completed with score 1.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 8
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 28, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 4: Completed with score 2.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 45.78it/s]
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 2
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 0
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 1: Completed with score 2.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 3: Completed with score 1.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 30, Inning 4: Completed with score 4.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 6: Completed with score 2.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 9
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 4: Completed with score 2.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 8: Completed with score 1.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 31, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 3
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 32, Inning 2: Completed with score 3.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 5: Completed with score 1.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 4

Season 5 completed. Results: {'total_runs': 101, 'total_hits': 255, 'total_walks': 111, 'total_strikeouts': 309, 'total_innings': 288, 'whip': 1.2708333333333333, 'era': 3.15625, 'average_runs_per_game': 3.15625, 'game_results': [1, 1, 2, 2, 4, 8, 4, 3, 0, 4, 0, 2, 1, 3, 2, 1, 0, 3, 8, 2, 2, 3, 9, 0, 8, 2, 8, 2, 0, 9, 3, 4]}

Starting Season 6...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 56.60it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 0
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 5: Completed with score 1.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 9: Completed with score 1.
Game 2 completed. Total Score: 2
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 0
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 4, Inning 4: Completed with score 2.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: triple
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 9: Completed with score 1.
Game 4 completed. Total Score: 3
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 3: Completed with score 1.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 7: Completed with score 1.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 6, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 6: Completed with score 1.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 1
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 3-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 8: Completed with score 1.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 9: Completed with score 2.
Game 7 completed. Total Score: 3
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 8, Inning 3: Completed with score 3.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 6: Completed with score 1.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 4
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 2: Completed with score 1.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 1
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 4: Completed with score 2.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 2
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 3: Completed with score 1.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Simulating Games:  38%|███▊      | 12/32 [00:00<00:00, 49.70it/s]
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 11, Inning 5: Completed with score 3.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 4
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 0
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 13, Inning 6: Completed with score 3.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 3
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Simulating Games:  56%|█████▋    | 18/32 [00:00<00:00, 47.50it/s]
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 3: Completed with score 1.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 7: Completed with score 2.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 6
Game 14, Inning 8: Completed with score 6.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 9: Completed with score 2.
Game 14 completed. Total Score: 11
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 2: Completed with score 2.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 9: Completed with score 1.
Game 15 completed. Total Score: 3
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 0
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 7: Completed with score 1.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 1
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 1: Completed with score 1.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 1
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 3: Completed with score 2.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 4: Completed with score 1.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 3
Game 19, Inning 5: Completed with score 3.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 6: Completed with score 2.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 8
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 1: Completed with score 1.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 6: Completed with score 1.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 2
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 0
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 22, Inning 2: Completed with score 3.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 22, Inning 3: Completed with score 3.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Simulating Games:  72%|███████▏  | 23/32 [00:00<00:00, 48.35it/s]
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 6
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 1: Completed with score 1.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 2: Completed with score 2.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 4: Completed with score 3.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 6: Completed with score 2.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 8: Completed with score 2.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 9: Completed with score 3.
Game 23 completed. Total Score: 13
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 24, Inning 9: Completed with score 2.
Game 24 completed. Total Score: 2
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 25, Inning 1: Completed with score 2.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 25, Inning 6: Completed with score 2.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 9: Completed with score 1.
Game 25 completed. Total Score: 5
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 2: Completed with score 1.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 26, Inning 4: Completed with score 2.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 8: Completed with score 1.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 4
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 48.55it/s]
Game 27, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 0
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 28, Inning 5: Completed with score 3.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 6: Completed with score 1.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 28, Inning 8: Completed with score 4.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 8
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 3: Completed with score 1.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 6: Completed with score 1.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 9: Completed with score 1.
Game 29 completed. Total Score: 3
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 5: Completed with score 1.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 7: Completed with score 1.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 8: Completed with score 1.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 3
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 0
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 32, Inning 7: Completed with score 2.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 2

Season 6 completed. Results: {'total_runs': 97, 'total_hits': 243, 'total_walks': 94, 'total_strikeouts': 269, 'total_innings': 288, 'whip': 1.1701388888888888, 'era': 3.03125, 'average_runs_per_game': 3.03125, 'game_results': [0, 2, 0, 3, 2, 1, 3, 4, 1, 2, 4, 0, 3, 11, 3, 0, 1, 1, 8, 2, 0, 6, 13, 2, 5, 4, 0, 8, 3, 3, 0, 2]}

Starting Season 7...
Simulating Games:  16%|█▌        | 5/32 [00:00<00:00, 48.53it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 1, Inning 1: Completed with score 3.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 3: Completed with score 1.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 4
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 0
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 3, Inning 4: Completed with score 1.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 3, Inning 6: Completed with score 1.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 2
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 4, Inning 6: Completed with score 2.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 8: Completed with score 1.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 4, Inning 9: Completed with score 2.
Game 4 completed. Total Score: 5
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 1: Completed with score 2.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 0
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 7, Inning 7: Completed with score 3.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 8: Completed with score 1.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 4
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 1: Completed with score 1.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 1
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Simulating Games:  31%|███▏      | 10/32 [00:00<00:00, 46.67it/s]
Ball in play! Result: single
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 0
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 0
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 2: Completed with score 1.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 1
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Simulating Games:  47%|████▋     | 15/32 [00:00<00:00, 46.50it/s]
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 0
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 2: Completed with score 1.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 1
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 6: Completed with score 2.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 2
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 15, Inning 3: Completed with score 4.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 7: Completed with score 1.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 8: Completed with score 1.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 6
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 16, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 0
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 9: Completed with score 1.
Game 17 completed. Total Score: 1
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 6: Completed with score 1.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 8: Completed with score 1.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 9: Completed with score 2.
Game 18 completed. Total Score: 4
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 2: Completed with score 1.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 3: Completed with score 1.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 4: Completed with score 2.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 4
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Simulating Games:  62%|██████▎   | 20/32 [00:00<00:00, 47.46it/s]
Ball in play! Result: single
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 20, Inning 5: Completed with score 3.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 6: Completed with score 1.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 20, Inning 7: Completed with score 3.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 7
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 1: Completed with score 2.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 9: Completed with score 1.
Game 21 completed. Total Score: 3
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 9: Completed with score 1.
Game 22 completed. Total Score: 1
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 5: Completed with score 3.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 7: Completed with score 3.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 23, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 8: Completed with score 1.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 7
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 24, Inning 2: Completed with score 3.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 3
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 0
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 2: Completed with score 3.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 6: Completed with score 1.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 51.03it/s]
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 7: Completed with score 1.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 8: Completed with score 3.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 8
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 27, Inning 5: Completed with score 2.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 2
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 3: Completed with score 1.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 1
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 1: Completed with score 1.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 29, Inning 4: Completed with score 2.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 9: Completed with score 1.
Game 29 completed. Total Score: 4
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 5: Completed with score 1.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 8: Completed with score 1.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 2
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 8: Completed with score 1.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 1
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 0
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 49.08it/s]
Season 7 completed. Results: {'total_runs': 76, 'total_hits': 242, 'total_walks': 94, 'total_strikeouts': 292, 'total_innings': 288, 'whip': 1.1666666666666667, 'era': 2.375, 'average_runs_per_game': 2.375, 'game_results': [4, 0, 2, 5, 2, 0, 4, 1, 0, 0, 1, 0, 1, 2, 6, 0, 1, 4, 4, 7, 3, 1, 7, 3, 0, 8, 2, 1, 4, 2, 1, 0]}

Starting Season 8...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 56.08it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 1: Completed with score 2.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 2: Completed with score 1.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 6: Completed with score 1.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 4
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 3: Completed with score 1.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 1
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 0
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 4, Inning 6: Completed with score 4.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 7, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 4
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 0
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 0
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 0
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 0
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 9, Inning 4: Completed with score 2.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 8: Completed with score 1.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 3
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 8: Completed with score 1.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 1
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 11, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 1: Completed with score 1.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 5: Completed with score 1.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 11, Inning 6: Completed with score 3.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 5
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 12, Inning 1: Completed with score 3.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 6: Completed with score 2.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 5
Simulating Games:  75%|███████▌  | 24/32 [00:00<00:00, 50.64it/s]
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 1: Completed with score 1.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 2: Completed with score 1.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 4: Completed with score 1.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 6: Completed with score 1.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 4
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 3: Completed with score 1.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 1
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 0
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 16, Inning 7: Completed with score 1.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 1
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 17, Inning 3: Completed with score 2.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 2
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 4: Completed with score 1.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 18, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 7: Completed with score 1.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 2
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 2, Bases after play [0, 0, 1]
Runs scored: 2, Bases after play: [0, 0, 1]
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 6
Game 19, Inning 5: Completed with score 6.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 6
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 1: Completed with score 1.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 1
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 3: Completed with score 1.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 1
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 22, Inning 6: Completed with score 3.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 3
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 0
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 4: Completed with score 1.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 5: Completed with score 1.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 3-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 2
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 49.15it/s]
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 1: Completed with score 1.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 5: Completed with score 1.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: swinging_strike
Game 25, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 2
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 4: Completed with score 1.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 26, Inning 5: Completed with score 2.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 7: Completed with score 3.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 6
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 27, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 27, Inning 5: Completed with score 2.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 2
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 28, Inning 5: Completed with score 3.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 7: Completed with score 1.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 4
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 29, Inning 2: Completed with score 2.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 3: Completed with score 1.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 3
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 30, Inning 3: Completed with score 4.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 4: Completed with score 1.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 5
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 2: Completed with score 2.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 6: Completed with score 1.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 3
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 0
Season 8 completed. Results: {'total_runs': 71, 'total_hits': 233, 'total_walks': 99, 'total_strikeouts': 270, 'total_innings': 288, 'whip': 1.1527777777777777, 'era': 2.21875, 'average_runs_per_game': 2.21875, 'game_results': [4, 1, 0, 4, 0, 0, 0, 0, 3, 1, 5, 5, 4, 1, 0, 1, 2, 2, 6, 1, 1, 3, 0, 2, 2, 6, 2, 4, 3, 5, 3, 0]}

Starting Season 9...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 51.27it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 8: Completed with score 1.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 9: Completed with score 1.
Game 1 completed. Total Score: 2
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 2: Completed with score 1.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 8: Completed with score 1.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 2
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 3, Inning 5: Completed with score 3.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 3, Inning 7: Completed with score 4.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 7
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 4, Inning 4: Completed with score 3.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 8: Completed with score 1.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 4
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 5, Inning 1: Completed with score 4.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 9: Completed with score 1.
Game 5 completed. Total Score: 5
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 6, Inning 7: Completed with score 2.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 2
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 7, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 7: Completed with score 2.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 2
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 1: Completed with score 1.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 2, Bases after play [0, 0, 1]
Runs scored: 2, Bases after play: [0, 0, 1]
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 5: Completed with score 2.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 3
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 6: Completed with score 1.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 8: Completed with score 1.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 2
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 10, Inning 3: Completed with score 3.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 4: Completed with score 2.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 9: Completed with score 1.
Game 10 completed. Total Score: 6
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 2: Completed with score 1.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 6: Completed with score 1.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 11, Inning 8: Completed with score 3.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 5
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 1: Completed with score 1.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Simulating Games:  56%|█████▋    | 18/32 [00:00<00:00, 50.37it/s]
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 7: Completed with score 1.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 12, Inning 9: Completed with score 4.
Game 12 completed. Total Score: 6
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 3: Completed with score 1.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 13, Inning 4: Completed with score 3.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 4
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 0
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 2: Completed with score 2.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 3: Completed with score 1.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 3
Game 15, Inning 8: Completed with score 3.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 6
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 0
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 0
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 2: Completed with score 2.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 3: Completed with score 2.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 4
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 1: Completed with score 1.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 8: Completed with score 1.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 2
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 2: Completed with score 1.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 4: Completed with score 1.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 20, Inning 5: Completed with score 2.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 20, Inning 9: Completed with score 3.
Game 20 completed. Total Score: 7
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 3: Completed with score 1.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 5: Completed with score 1.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 2
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 2: Completed with score 1.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 6: Completed with score 1.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 9: Completed with score 1.
Game 22 completed. Total Score: 3
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 1: Completed with score 1.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 3: Completed with score 2.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 4: Completed with score 2.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 6: Completed with score 1.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 6
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Simulating Games:  75%|███████▌  | 24/32 [00:00<00:00, 49.72it/s]
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 5: Completed with score 1.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 6: Completed with score 1.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: triple
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 2
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 49.30it/s]
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 25, Inning 3: Completed with score 4.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 9: Completed with score 1.
Game 25 completed. Total Score: 5
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 1: Completed with score 3.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 26, Inning 4: Completed with score 2.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 6: Completed with score 1.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 26, Inning 7: Completed with score 2.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 9: Completed with score 1.
Game 26 completed. Total Score: 9
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 2: Completed with score 1.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 1
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 5: Completed with score 2.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 8: Completed with score 2.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 4
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 2: Completed with score 1.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 3-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 29, Inning 3: Completed with score 3.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 6: Completed with score 1.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 9: Completed with score 1.
Game 29 completed. Total Score: 6
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 30, Inning 2: Completed with score 3.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 3
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 5: Completed with score 1.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 31, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 1
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 7: Completed with score 1.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 1

Season 9 completed. Results: {'total_runs': 112, 'total_hits': 259, 'total_walks': 106, 'total_strikeouts': 274, 'total_innings': 288, 'whip': 1.2673611111111112, 'era': 3.5, 'average_runs_per_game': 3.5, 'game_results': [2, 2, 7, 4, 5, 2, 2, 3, 2, 6, 5, 6, 4, 0, 6, 0, 0, 4, 2, 7, 2, 3, 6, 2, 5, 9, 1, 4, 6, 3, 1, 1]}

Starting Season 10...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 50.83it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 0
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: triple
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 1: Completed with score 2.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 4: Completed with score 1.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 6: Completed with score 1.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 4
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 1: Completed with score 2.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 2: Completed with score 2.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 4
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 0
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 5, Inning 5: Completed with score 4.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 4
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 1: Completed with score 1.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 3: Completed with score 3.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 4: Completed with score 3.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 8: Completed with score 3.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 10
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 2: Completed with score 1.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 1
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 7: Completed with score 1.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 1
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 5: Completed with score 1.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 1
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 1: Completed with score 2.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 10, Inning 3: Completed with score 4.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 4: Completed with score 1.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 7
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Simulating Games:  38%|███▊      | 12/32 [00:00<00:00, 48.90it/s]
Game 11, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 11, Inning 2: Completed with score 2.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 2
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 1: Completed with score 2.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 4: Completed with score 2.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 5: Completed with score 1.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 5
Simulating Games:  56%|█████▋    | 18/32 [00:00<00:00, 50.34it/s]
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 0
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 3: Completed with score 2.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 5: Completed with score 1.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 3
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 4: Completed with score 1.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 8: Completed with score 2.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 3
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 16, Inning 5: Completed with score 1.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 7, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 1
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 3: Completed with score 1.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 1
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 3: Completed with score 1.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 7: Completed with score 1.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 2
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 19, Inning 5: Completed with score 3.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 9: Completed with score 2.
Game 19 completed. Total Score: 5
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 5
Game 20, Inning 8: Completed with score 5.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 5
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 21, Inning 1: Completed with score 3.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 5: Completed with score 1.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 4
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 0
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-0, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 0
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 1: Completed with score 0.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 0
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 48.17it/s]
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 1: Completed with score 1.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 25, Inning 2: Completed with score 2.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 25, Inning 8: Completed with score 1.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 4
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 26, Inning 6: Completed with score 2.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 2
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 6: Completed with score 1.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 1
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 1: Completed with score 1.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 9: Completed with score 1.
Game 28 completed. Total Score: 2
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 29, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 0
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 0
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 3: Completed with score 1.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 7: Completed with score 2.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 3
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 6: Completed with score 1.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 1

Season 10 completed. Results: {'total_runs': 76, 'total_hits': 248, 'total_walks': 91, 'total_strikeouts': 290, 'total_innings': 288, 'whip': 1.1770833333333335, 'era': 2.375, 'average_runs_per_game': 2.375, 'game_results': [0, 4, 4, 0, 4, 10, 1, 1, 1, 7, 2, 5, 0, 3, 3, 1, 1, 2, 5, 5, 4, 0, 0, 0, 4, 2, 1, 2, 0, 0, 3, 1]}

Starting Season 11...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 52.16it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 3: Completed with score 1.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 5: Completed with score 1.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 9: Completed with score 2.
Game 1 completed. Total Score: 4
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 6: Completed with score 1.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 2, Inning 8: Completed with score 1.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 2, Inning 9: Completed with score 3.
Game 2 completed. Total Score: 5
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 3, Inning 3: Completed with score 1.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 3, Inning 8: Completed with score 1.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 2
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 1: Completed with score 1.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 3: Completed with score 1.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 6: Completed with score 1.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 3
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 2: Completed with score 1.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 5: Completed with score 1.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 4: Completed with score 1.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 6, Inning 5: Completed with score 4.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 5
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 4: Completed with score 1.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 1
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 4: Completed with score 2.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 5: Completed with score 1.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 3
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 4, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 0
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 10, Inning 1: Completed with score 2.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 2
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 11, Inning 2: Completed with score 2.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 3, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: swinging_strike
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 2
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Simulating Games:  72%|███████▏  | 23/32 [00:00<00:00, 51.23it/s]
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 0
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 1: Completed with score 1.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 6: Completed with score 1.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 7: Completed with score 1.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 8: Completed with score 1.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 3-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 9: Completed with score 1.
Game 13 completed. Total Score: 5
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 4: Completed with score 1.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 7
Game 14, Inning 7: Completed with score 7.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 8
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 2: Completed with score 2.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 5: Completed with score 1.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 9: Completed with score 1.
Game 15 completed. Total Score: 4
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 16, Inning 8: Completed with score 3.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 3
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 17, Inning 1: Completed with score 2.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 9: Completed with score 1.
Game 17 completed. Total Score: 3
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 6: Completed with score 1.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 8: Completed with score 1.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 2
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 0
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 20, Inning 4: Completed with score 2.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 5, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 20, Inning 6: Completed with score 4.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 9: Completed with score 1.
Game 20 completed. Total Score: 7
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 4: Completed with score 1.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 6: Completed with score 1.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 2
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 22, Inning 5: Completed with score 2.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 2
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 5: Completed with score 1.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 1
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 47.09it/s]
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 1: Completed with score 1.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 5: Completed with score 1.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 2
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 0
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 4: Completed with score 1.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 9: Completed with score 1.
Game 26 completed. Total Score: 2
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 8: Completed with score 1.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 1
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 4: Completed with score 1.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 7: Completed with score 2.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 3
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 29, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 6: Completed with score 1.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 7: Completed with score 1.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 2
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 4: Completed with score 1.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 3, Bases after play [0, 0, 1]
Runs scored: 3, Bases after play: [0, 0, 1]
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 30, Inning 6: Completed with score 4.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 7: Completed with score 1.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 6
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 6: Completed with score 2.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 2
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 5: Completed with score 1.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 6: Completed with score 1.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 7: Completed with score 1.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 32, Inning 8: Completed with score 2.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 5

Season 11 completed. Results: {'total_runs': 89, 'total_hits': 248, 'total_walks': 94, 'total_strikeouts': 260, 'total_innings': 288, 'whip': 1.1875, 'era': 2.78125, 'average_runs_per_game': 2.78125, 'game_results': [4, 5, 2, 3, 2, 5, 1, 3, 0, 2, 2, 0, 5, 8, 4, 3, 3, 2, 0, 7, 2, 2, 1, 2, 0, 2, 1, 3, 2, 6, 2, 5]}

Starting Season 12...
Simulating Games:   9%|▉         | 3/32 [00:00<00:01, 18.40it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 2: Completed with score 2.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 6: Completed with score 2.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 7: Completed with score 2.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 6
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 2: Completed with score 2.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 6: Completed with score 2.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 4
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 3: Completed with score 2.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 7: Completed with score 2.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 4
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 4, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 3-0, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 0
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 8: Completed with score 2.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 1: Completed with score 1.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 1
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 4: Completed with score 1.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 7, Inning 8: Completed with score 3.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 4
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 1: Completed with score 2.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 2, Bases after play [0, 0, 1]
Runs scored: 2, Bases after play: [0, 0, 1]
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 9: Completed with score 2.
Game 8 completed. Total Score: 4
Simulating Games:  56%|█████▋    | 18/32 [00:00<00:00, 41.49it/s]
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 9, Inning 2: Completed with score 2.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 3: Completed with score 1.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 3
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 9, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 0
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 11, Inning 2: Completed with score 2.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 6: Completed with score 1.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 3
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 0
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 13, Inning 1: Completed with score 2.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 13, Inning 2: Completed with score 4.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 4, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 13, Inning 5: Completed with score 3.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 9
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 5: Completed with score 1.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 9: Completed with score 1.
Game 14 completed. Total Score: 2
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 4: Completed with score 0.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 0
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 16, Inning 3: Completed with score 4.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 16, Inning 7: Completed with score 2.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 6
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 2: Completed with score 1.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 17, Inning 6: Completed with score 2.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 9: Completed with score 1.
Game 17 completed. Total Score: 4
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 3-0, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 2: Completed with score 2.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 18, Inning 3: Completed with score 2.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: triple
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 4
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 41.56it/s]
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 6: Completed with score 1.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 1
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 0
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 0
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 0
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 23, Inning 5, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 6: Completed with score 1.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 1
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 24, Inning 1: Completed with score 2.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 3: Completed with score 1.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 3
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 0
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 0
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 7: Completed with score 1.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 9: Completed with score 1.
Game 27 completed. Total Score: 2
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 9: Completed with score 1.
Game 28 completed. Total Score: 1
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 2: Completed with score 0.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 29, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 0
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 30, Inning 1: Completed with score 3.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 5: Completed with score 2.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 30, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 3-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 30, Inning 9: Completed with score 1.
Game 30 completed. Total Score: 6
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 0
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 32, Inning 1: Completed with score 3.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 3-1, Pitch Type: splitter, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 32, Inning 3: Completed with score 4.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 7

Season 12 completed. Results: {'total_runs': 77, 'total_hits': 230, 'total_walks': 88, 'total_strikeouts': 250, 'total_innings': 288, 'whip': 1.1041666666666667, 'era': 2.40625, 'average_runs_per_game': 2.40625, 'game_results': [6, 4, 4, 0, 2, 1, 4, 4, 3, 0, 3, 0, 9, 2, 0, 6, 4, 4, 1, 0, 0, 0, 1, 3, 0, 0, 2, 1, 0, 6, 0, 7]}

Starting Season 13...
Simulating Games:  31%|███▏      | 10/32 [00:00<00:00, 44.46it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 3-0, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 1, Inning 2: Completed with score 2.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 7: Completed with score 1.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 3
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 3: Completed with score 0.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 0
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 3, Inning 4: Completed with score 3.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 3, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 6: Completed with score 2.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 9: Completed with score 2.
Game 3 completed. Total Score: 7
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 4, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 8: Completed with score 0.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 0
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 5: Completed with score 1.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 7: Completed with score 1.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 8: Completed with score 0.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 2
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 1: Completed with score 1.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 6, Inning 2: Completed with score 2.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 3: Completed with score 1.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 6: Completed with score 1.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 7: Completed with score 1.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 6
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 9: Completed with score 2.
Game 7 completed. Total Score: 2
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 8, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 2: Completed with score 1.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 1
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 0
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 10, Inning 2: Completed with score 4.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 5: Completed with score 1.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 7: Completed with score 1.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 6
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 11, Inning 6: Completed with score 2.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 2
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 4: Completed with score 1.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 8, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 12, Inning 8: Completed with score 1.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 2
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 1: Completed with score 0.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 4: Completed with score 1.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 13, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 8: Completed with score 1.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 2
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 2: Completed with score 0.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 0
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 4: Completed with score 1.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 15, Inning 7: Completed with score 2.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 8: Completed with score 1.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 4
Simulating Games:  62%|██████▎   | 20/32 [00:00<00:00, 44.16it/s]
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 16, Inning 4: Completed with score 2.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 16, Inning 5: Completed with score 2.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 4
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 3: Completed with score 0.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 0
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 4, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 4: Completed with score 0.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 18, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 0
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 19, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 3: Completed with score 0.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 19, Inning 5: Completed with score 2.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 6: Completed with score 1.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 19, Inning 8: Completed with score 3.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 6
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 0
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 21, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 0
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 0
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 23, Inning 4: Completed with score 1.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 7: Completed with score 2.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 8: Completed with score 2.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 5
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 1: Completed with score 1.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 3: Completed with score 0.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 4, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 1
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 25, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 25, Inning 9: Completed with score 2.
Game 25 completed. Total Score: 2
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 42.44it/s]
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: triple
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 2: Completed with score 3.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 26, Inning 4: Completed with score 1.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 4
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 1: Completed with score 1.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 1]
Runs scored: 2, Bases after play: [0, 1, 1]
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 27, Inning 2: Completed with score 3.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 27, Inning 4: Completed with score 1.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 27, Inning 5: Completed with score 2.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 7
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 28, Inning 3: Completed with score 3.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 9: Completed with score 0.
Game 28 completed. Total Score: 3
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 29, Inning 2: Completed with score 2.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 3: Completed with score 1.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 4: Completed with score 1.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 29, Inning 8: Completed with score 2.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 6
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 30, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 0
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 1: Completed with score 2.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 2
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 32, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 32, Inning 4: Completed with score 4.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 32, Inning 5: Completed with score 2.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 9: Completed with score 1.
Game 32 completed. Total Score: 7

Season 13 completed. Results: {'total_runs': 84, 'total_hits': 249, 'total_walks': 88, 'total_strikeouts': 266, 'total_innings': 288, 'whip': 1.1701388888888888, 'era': 2.625, 'average_runs_per_game': 2.625, 'game_results': [3, 0, 7, 0, 2, 6, 2, 1, 0, 6, 2, 2, 2, 0, 4, 4, 0, 0, 6, 0, 0, 0, 5, 1, 2, 4, 7, 3, 6, 0, 2, 7]}

Starting Season 14...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 54.55it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 1, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 1, Inning 2: Completed with score 1.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 1, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 7, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 1
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 2: Completed with score 0.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 3: Completed with score 2.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 2, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 2
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 6, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 7, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 7: Completed with score 0.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 0
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 4, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 4: Completed with score 1.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 7: Completed with score 0.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 4, Inning 8: Completed with score 4.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 4, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 5
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 5, Inning 1: Completed with score 2.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 5, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 3: Completed with score 0.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 4: Completed with score 1.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 5: Completed with score 0.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 8: Completed with score 1.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 5, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 4
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: triple
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 6, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 6: Completed with score 0.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 7: Completed with score 1.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 6, Inning 9: Completed with score 1.
Game 6 completed. Total Score: 2
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 1: Completed with score 0.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 7, Inning 3: Completed with score 1.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 6: Completed with score 2.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 7: Completed with score 2.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 7, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 5
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 1: Completed with score 0.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 8, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 4: Completed with score 1.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 8, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 8: Completed with score 0.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 8, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 9: Completed with score 0.
Game 8 completed. Total Score: 1
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 9, Inning 1: Completed with score 3.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 3: Completed with score 1.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 4, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 4: Completed with score 0.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 5: Completed with score 0.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 6: Completed with score 0.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 9, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 7: Completed with score 0.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 9, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 9, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 9, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 4
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 3: Completed with score 0.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 4, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 5: Completed with score 0.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 9: Completed with score 1.
Game 10 completed. Total Score: 1
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 3: Completed with score 1.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 5: Completed with score 0.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 11, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 1
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 1: Completed with score 0.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 2: Completed with score 0.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Simulating Games:  53%|█████▎    | 17/32 [00:00<00:00, 46.38it/s]
Game 12, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 12, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 4, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 9, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 0
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 13, Inning 1: Completed with score 4.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 13, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 5: Completed with score 1.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 6: Completed with score 0.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 8, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 5
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 14, Inning 2: Completed with score 3.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 6, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 14, Inning 6: Completed with score 1.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 14, Inning 7: Completed with score 3.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 9: Completed with score 0.
Game 14 completed. Total Score: 7
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 1: Completed with score 1.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 3: Completed with score 0.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 4: Completed with score 1.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 5: Completed with score 0.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 7: Completed with score 1.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 15, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 3
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 3: Completed with score 0.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 16, Inning 4, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 5
Game 16, Inning 6: Completed with score 5.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 16, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 5
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 1: Completed with score 0.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 17, Inning 3: Completed with score 1.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 17, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 7, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 8: Completed with score 0.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 1
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 1: Completed with score 0.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 4, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 18, Inning 4: Completed with score 3.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 18, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 8: Completed with score 1.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 4
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 3: Completed with score 1.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 4, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: called_strike
Batter struck out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 1
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 3: Completed with score 1.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 20, Inning 5: Completed with score 1.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 20, Inning 6: Completed with score 2.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 20, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 4
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 21, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 3: Completed with score 0.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 4: Completed with score 0.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 21, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 0
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 2: Completed with score 0.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 3: Completed with score 1.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 2, Bases after play [0, 0, 1]
Runs scored: 2, Bases after play: [0, 0, 1]
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 22, Inning 6: Completed with score 2.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 8, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 8: Completed with score 1.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 4
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 3: Completed with score 0.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 23, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 6: Completed with score 0.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 23, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 8: Completed with score 3.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 23, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 3
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 49.92it/s]
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 1, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 1, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 1: Completed with score 1.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 3: Completed with score 1.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 5: Completed with score 1.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 24, Inning 6: Completed with score 2.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 8, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 5
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 25, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 0
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 26, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 1: Completed with score 3.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 3, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 4: Completed with score 0.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 5: Completed with score 0.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 3
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 27, Inning 1, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 27, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 4, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 27, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 2, Bases after play [0, 1, 0]
Runs scored: 2, Bases after play: [0, 1, 0]
Game 27, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 27, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 27, Inning 6: Completed with score 2.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 27, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 2
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 2, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 28, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 28, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 8: Completed with score 1.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 28, Inning 9: Completed with score 1.
Game 28 completed. Total Score: 2
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 1, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 1: Completed with score 0.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 2: Completed with score 1.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 5: Completed with score 1.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 6, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 6: Completed with score 0.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 7, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 29, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 29, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 2
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 2, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 2, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 5: Completed with score 0.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 7, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 9: Completed with score 0.
Game 30 completed. Total Score: 0
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 2, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 2, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 2: Completed with score 0.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 31, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 4: Completed with score 1.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 5: Completed with score 0.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 6, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 6: Completed with score 2.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 7: Completed with score 0.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 8, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 9, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 9: Completed with score 0.
Game 31 completed. Total Score: 3
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 32, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 3, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 32, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 32, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 9: Completed with score 0.
Game 32 completed. Total Score: 0
Season 14 completed. Results: {'total_runs': 80, 'total_hits': 249, 'total_walks': 88, 'total_strikeouts': 282, 'total_innings': 288, 'whip': 1.1701388888888888, 'era': 2.5, 'average_runs_per_game': 2.5, 'game_results': [1, 2, 0, 5, 4, 2, 5, 1, 4, 1, 1, 0, 5, 7, 3, 5, 1, 4, 1, 4, 0, 4, 3, 5, 0, 3, 2, 2, 2, 0, 3, 0]}

Starting Season 15...
Simulating Games:  19%|█▉        | 6/32 [00:00<00:00, 56.60it/s]
Game 1, Inning 1: Starting.
Game 1, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 1, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 1, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 1, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 1: Completed with score 0.
Game 1, Inning 2: Starting.
Game 1, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 2, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 1, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 1, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 2: Completed with score 0.
Game 1, Inning 3: Starting.
Game 1, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 1, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 3: Completed with score 0.
Game 1, Inning 4: Starting.
Game 1, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 1, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 1, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 1, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 4: Completed with score 0.
Game 1, Inning 5: Starting.
Game 1, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 1, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 5: Completed with score 0.
Game 1, Inning 6: Starting.
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 1, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 1, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 6: Completed with score 0.
Game 1, Inning 7: Starting.
Game 1, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 1, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 1, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 1, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 7: Completed with score 0.
Game 1, Inning 8: Starting.
Game 1, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 1, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 1, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 1, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 1, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 8: Completed with score 0.
Game 1, Inning 9: Starting.
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 1, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 1, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 1, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 1, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 1, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 1, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 1, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 1, Inning 9: Completed with score 0.
Game 1 completed. Total Score: 0
Game 2, Inning 1: Starting.
Game 2, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 2, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 1: Completed with score 0.
Game 2, Inning 2: Starting.
Game 2, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 2, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 2, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 2: Completed with score 2.
Game 2, Inning 3: Starting.
Game 2, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 3, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 2, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 2, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 2, Inning 3: Completed with score 2.
Game 2, Inning 4: Starting.
Game 2, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 4: Completed with score 0.
Game 2, Inning 5: Starting.
Game 2, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 5, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 5: Completed with score 0.
Game 2, Inning 6: Starting.
Game 2, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 2, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 6, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 6: Completed with score 0.
Game 2, Inning 7: Starting.
Game 2, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 2, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 2, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 2, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 7, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 2, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 7: Completed with score 0.
Game 2, Inning 8: Starting.
Game 2, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 2, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 2, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 2, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 8, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 2, Inning 8, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 2, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 8: Completed with score 0.
Game 2, Inning 9: Starting.
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 2, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 2, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 2, Inning 9, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 2, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 2, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 2, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 2, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 2, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 2, Inning 9: Completed with score 0.
Game 2 completed. Total Score: 4
Game 3, Inning 1: Starting.
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 3, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 3, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 1: Completed with score 0.
Game 3, Inning 2: Starting.
Game 3, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 3, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 2, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 3, Inning 2, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 2, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 2: Completed with score 0.
Game 3, Inning 3: Starting.
Game 3, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 3, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 3, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 3: Completed with score 0.
Game 3, Inning 4: Starting.
Game 3, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 4, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 4, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 4: Completed with score 0.
Game 3, Inning 5: Starting.
Game 3, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 3, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 5: Completed with score 0.
Game 3, Inning 6: Starting.
Game 3, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 3, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 3, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 6: Completed with score 0.
Game 3, Inning 7: Starting.
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 3, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 3, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 7, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 3, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 3, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 3, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 3, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 7, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 3, Inning 7: Completed with score 2.
Game 3, Inning 8: Starting.
Game 3, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 3, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 3, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 3, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 3, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 8: Completed with score 0.
Game 3, Inning 9: Starting.
Game 3, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 3, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 3, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 3, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 3, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 3, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 3, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 3, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 3, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 3, Inning 9: Completed with score 0.
Game 3 completed. Total Score: 2
Game 4, Inning 1: Starting.
Game 4, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 1, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 4, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 4, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 1, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 1, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 1: Completed with score 0.
Game 4, Inning 2: Starting.
Game 4, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 4, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 2: Completed with score 0.
Game 4, Inning 3: Starting.
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 3, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 4, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 4, Inning 3, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 4, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 3: Completed with score 0.
Game 4, Inning 4: Starting.
Game 4, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 4, Inning 4, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 4: Completed with score 0.
Game 4, Inning 5: Starting.
Game 4, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 4, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 4, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 5: Completed with score 0.
Game 4, Inning 6: Starting.
Game 4, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 6: Completed with score 0.
Game 4, Inning 7: Starting.
Game 4, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 4, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 7, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 4, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 7: Completed with score 1.
Game 4, Inning 8: Starting.
Game 4, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 4, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 4, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 4, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 4, Inning 8: Completed with score 1.
Game 4, Inning 9: Starting.
Game 4, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 4, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 4, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 4, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 4, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 4, Inning 9, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 4, Inning 9: Completed with score 0.
Game 4 completed. Total Score: 2
Game 5, Inning 1: Starting.
Game 5, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 5, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 1, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 1: Completed with score 0.
Game 5, Inning 2: Starting.
Game 5, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 5, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 2, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 2: Completed with score 0.
Game 5, Inning 3: Starting.
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 5, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 3, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 5, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 5, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 3: Completed with score 1.
Game 5, Inning 4: Starting.
Game 5, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 5, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 4, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 5, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 4: Completed with score 0.
Game 5, Inning 5: Starting.
Game 5, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 5, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 5, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 5, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 5, Inning 5, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 5, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 5: Completed with score 1.
Game 5, Inning 6: Starting.
Game 5, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 5, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 5, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 5, Inning 6, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 6: Completed with score 0.
Game 5, Inning 7: Starting.
Game 5, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 5, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 5, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 7: Completed with score 0.
Game 5, Inning 8: Starting.
Game 5, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 5, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 0]
Runs scored: 1, Bases after play: [0, 1, 0]
Game 5, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 5, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 5, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 5, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 5, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 5, Inning 8: Completed with score 1.
Game 5, Inning 9: Starting.
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 5, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 5, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 5, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 5, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 5, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 5, Inning 9: Completed with score 0.
Game 5 completed. Total Score: 3
Game 6, Inning 1: Starting.
Game 6, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 1: Completed with score 0.
Game 6, Inning 2: Starting.
Game 6, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 6, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 2, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 2: Completed with score 0.
Game 6, Inning 3: Starting.
Game 6, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 6, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 3: Completed with score 0.
Game 6, Inning 4: Starting.
Game 6, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 6, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 6, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 6, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 4: Completed with score 0.
Game 6, Inning 5: Starting.
Game 6, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 6, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 6, Inning 5, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 5: Completed with score 0.
Game 6, Inning 6: Starting.
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 6, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 6, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 6, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 6, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 6, Inning 6: Completed with score 3.
Game 6, Inning 7: Starting.
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 6, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 6, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 6, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 6, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 6, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 6, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 6, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 7: Completed with score 0.
Game 6, Inning 8: Starting.
Game 6, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 6, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 6, Inning 8, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 6, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 6, Inning 8, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 8: Completed with score 0.
Game 6, Inning 9: Starting.
Game 6, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 6, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 6, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 6, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 6, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 6, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 6, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 6, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 6, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 6, Inning 9: Completed with score 0.
Game 6 completed. Total Score: 3
Game 7, Inning 1: Starting.
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 7, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 1, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 7, Inning 1: Completed with score 2.
Game 7, Inning 2: Starting.
Game 7, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 7, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 2, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 7, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 2: Completed with score 0.
Game 7, Inning 3: Starting.
Game 7, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 7, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 7, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 7, Inning 3, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 7, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 3: Completed with score 0.
Game 7, Inning 4: Starting.
Game 7, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 7, Inning 4, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 7, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 7, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 4: Completed with score 0.
Game 7, Inning 5: Starting.
Game 7, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 7, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 5: Completed with score 0.
Game 7, Inning 6: Starting.
Game 7, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 7, Inning 6, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 7, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 6, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 6: Completed with score 0.
Game 7, Inning 7: Starting.
Game 7, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 7, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: swinging_strike
Game 7, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 7, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 7: Completed with score 0.
Game 7, Inning 8: Starting.
Game 7, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: swinging_strike
Game 7, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 7, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 7, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 7, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 7, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 7, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 8: Completed with score 0.
Game 7, Inning 9: Starting.
Game 7, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 7, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 7, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 7, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 7, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 7, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 7, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 7, Inning 9: Completed with score 0.
Game 7 completed. Total Score: 2
Game 8, Inning 1: Starting.
Game 8, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 1, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 1, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 8, Inning 1: Completed with score 2.
Game 8, Inning 2: Starting.
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 8, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 8, Inning 2, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball
Batter walked!
Game 8, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 2, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 8, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 2: Completed with score 0.
Game 8, Inning 3: Starting.
Game 8, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 3, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 8, Inning 3, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 3: Completed with score 0.
Game 8, Inning 4: Starting.
Game 8, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 4: Completed with score 0.
Game 8, Inning 5: Starting.
Game 8, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 8, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 5: Completed with score 0.
Game 8, Inning 6: Starting.
Game 8, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 6: Completed with score 0.
Game 8, Inning 7: Starting.
Game 8, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 7, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 7, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 7, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 8, Inning 7: Completed with score 0.
Game 8, Inning 8: Starting.
Game 8, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 8, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 8, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 8, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 8, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 8, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 8, Inning 8: Completed with score 1.
Game 8, Inning 9: Starting.
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 8, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 8, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 8, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 8, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 8, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 8, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 8, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 8, Inning 9: Completed with score 3.
Game 8 completed. Total Score: 6
Game 9, Inning 1: Starting.
Game 9, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 9, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 1, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 9, Inning 1, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 1: Completed with score 0.
Game 9, Inning 2: Starting.
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 9, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 2, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 2: Completed with score 0.
Game 9, Inning 3: Starting.
Game 9, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 3, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 3: Completed with score 0.
Game 9, Inning 4: Starting.
Game 9, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 4, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 4: Completed with score 1.
Game 9, Inning 5: Starting.
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 9, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 9, Inning 5, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 5: Completed with score 1.
Game 9, Inning 6: Starting.
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 6, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 9, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 9, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 9, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 9, Inning 6, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 6: Completed with score 1.
Game 9, Inning 7: Starting.
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 9, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 9, Inning 7, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 9, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 9, Inning 7: Completed with score 1.
Game 9, Inning 8: Starting.
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 9, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 9, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 9, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 9, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 8: Completed with score 0.
Game 9, Inning 9: Starting.
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 9, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 9, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 9, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 9, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 9, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 9, Inning 9: Completed with score 0.
Game 9 completed. Total Score: 4
Game 10, Inning 1: Starting.
Game 10, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 1, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 10, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 1: Completed with score 0.
Game 10, Inning 2: Starting.
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 2, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 10, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 2: Completed with score 0.
Game 10, Inning 3: Starting.
Game 10, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 3, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 3, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 10, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 3: Completed with score 1.
Game 10, Inning 4: Starting.
Game 10, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 4, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 10, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 4: Completed with score 0.
Game 10, Inning 5: Starting.
Game 10, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 10, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 10, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 10, Inning 5: Completed with score 1.
Game 10, Inning 6: Starting.
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 10, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 10, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 6, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 10, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 6: Completed with score 0.
Game 10, Inning 7: Starting.
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 10, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 10, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 10, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 7: Completed with score 0.
Game 10, Inning 8: Starting.
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 10, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 8, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 10, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 10, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 10, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 10, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 10, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 10, Inning 8, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 8: Completed with score 0.
Game 10, Inning 9: Starting.
Game 10, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 10, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 10, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 10, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 10, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 10, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 10, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 10, Inning 9: Completed with score 0.
Game 10 completed. Total Score: 2
Game 11, Inning 1: Starting.
Game 11, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 11, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 1, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 1: Completed with score 0.
Game 11, Inning 2: Starting.
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 11, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 11, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 11, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 2: Completed with score 0.
Game 11, Inning 3: Starting.
Game 11, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 3: Completed with score 0.
Game 11, Inning 4: Starting.
Game 11, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 11, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 4: Completed with score 0.
Game 11, Inning 5: Starting.
Game 11, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Simulating Games:  38%|███▊      | 12/32 [00:00<00:00, 45.70it/s]
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 11, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 11, Inning 5: Completed with score 1.
Game 11, Inning 6: Starting.
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 11, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 6, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 6, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 6, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 6: Completed with score 0.
Game 11, Inning 7: Starting.
Game 11, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 7, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 7, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 11, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 11, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 11, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 11, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 7: Completed with score 0.
Game 11, Inning 8: Starting.
Game 11, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 11, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 11, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 8: Completed with score 0.
Game 11, Inning 9: Starting.
Game 11, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: called_strike
Game 11, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 11, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 11, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 11, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 11, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 11, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 11, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 11, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 11, Inning 9, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 11, Inning 9: Completed with score 0.
Game 11 completed. Total Score: 1
Game 12, Inning 1: Starting.
Game 12, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 12, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 1, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 1: Completed with score 2.
Game 12, Inning 2: Starting.
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 12, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 2, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 12, Inning 2: Completed with score 2.
Game 12, Inning 3: Starting.
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 3: Completed with score 0.
Game 12, Inning 4: Starting.
Game 12, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 4: Completed with score 0.
Game 12, Inning 5: Starting.
Game 12, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 12, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 12, Inning 5, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 5, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 5: Completed with score 0.
Game 12, Inning 6: Starting.
Game 12, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 12, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 6, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 6, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 6: Completed with score 0.
Game 12, Inning 7: Starting.
Game 12, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 12, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 12, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 12, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 7: Completed with score 0.
Game 12, Inning 8: Starting.
Game 12, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 12, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 12, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 12, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 8, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 8: Completed with score 0.
Game 12, Inning 9: Starting.
Game 12, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 12, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 12, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 12, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 12, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 12, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 12, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 12, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 12, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 12, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 12, Inning 9: Completed with score 0.
Game 12 completed. Total Score: 4
Simulating Games:  53%|█████▎    | 17/32 [00:00<00:00, 46.12it/s]
Game 13, Inning 1: Starting.
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 13, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 13, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 1, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 1, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 1: Completed with score 1.
Game 13, Inning 2: Starting.
Game 13, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 13, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 2, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 2, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 2: Completed with score 0.
Game 13, Inning 3: Starting.
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 3: Completed with score 0.
Game 13, Inning 4: Starting.
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 4, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 13, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 13, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 13, Inning 4, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 4: Completed with score 0.
Game 13, Inning 5: Starting.
Game 13, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 5, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 13, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 5: Completed with score 0.
Game 13, Inning 6: Starting.
Game 13, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 13, Inning 6, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 13, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 13, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 13, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 13, Inning 6: Completed with score 1.
Game 13, Inning 7: Starting.
Game 13, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 13, Inning 7, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 13, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 7, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 13, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 13, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 13, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 13, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 7: Completed with score 0.
Game 13, Inning 8: Starting.
Game 13, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 13, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 13, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 13, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 8, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 8: Completed with score 0.
Game 13, Inning 9: Starting.
Game 13, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 13, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 13, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 13, Inning 9, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 13, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 13, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 13, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 13, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 13, Inning 9: Completed with score 0.
Game 13 completed. Total Score: 2
Game 14, Inning 1: Starting.
Game 14, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 1, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 1: Completed with score 0.
Game 14, Inning 2: Starting.
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 14, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 14, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 2, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 14, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 2: Completed with score 2.
Game 14, Inning 3: Starting.
Game 14, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 3, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 14, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 3, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: ball
Game 14, Inning 3, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 3: Completed with score 0.
Game 14, Inning 4: Starting.
Game 14, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 4, Outs: 2, Count: 3-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 4: Completed with score 0.
Game 14, Inning 5: Starting.
Game 14, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 5, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 5, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 14, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 5: Completed with score 0.
Game 14, Inning 6: Starting.
Game 14, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: swinging_strike
Game 14, Inning 6, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 6, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 6, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 6: Completed with score 0.
Game 14, Inning 7: Starting.
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 14, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 14, Inning 7, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 7, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 7: Completed with score 0.
Game 14, Inning 8: Starting.
Game 14, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 14, Inning 8, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 14, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 14, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 14, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 14, Inning 8: Completed with score 0.
Game 14, Inning 9: Starting.
Game 14, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 14, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 14, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 14, Inning 9, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 14, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 14, Inning 9, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 14, Inning 9, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 14, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 14, Inning 9: Completed with score 2.
Game 14 completed. Total Score: 4
Game 15, Inning 1: Starting.
Game 15, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 1, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 1, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 1: Completed with score 0.
Game 15, Inning 2: Starting.
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 15, Inning 2, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 15, Inning 2, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 2: Completed with score 0.
Game 15, Inning 3: Starting.
Game 15, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 15, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 15, Inning 3: Completed with score 3.
Game 15, Inning 4: Starting.
Game 15, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: curveball, Outcome: foul
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 15, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 15, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 15, Inning 4, Outs: 2, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 15, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 15, Inning 4: Completed with score 1.
Game 15, Inning 5: Starting.
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 15, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 1]
Runs scored: 1, Bases after play: [1, 0, 1]
Game 15, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 15, Inning 5: Completed with score 3.
Game 15, Inning 6: Starting.
Game 15, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 15, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 15, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 6: Completed with score 0.
Game 15, Inning 7: Starting.
Game 15, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 15, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 15, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 7: Completed with score 0.
Game 15, Inning 8: Starting.
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 15, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 15, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 15, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: ball
Batter walked!
Game 15, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 15, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 8: Completed with score 0.
Game 15, Inning 9: Starting.
Game 15, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 15, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 15, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 15, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 15, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 15, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 15, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 15, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 15, Inning 9: Completed with score 0.
Game 15 completed. Total Score: 7
Game 16, Inning 1: Starting.
Game 16, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 16, Inning 1, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 1: Completed with score 0.
Game 16, Inning 2: Starting.
Game 16, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 2, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 2: Completed with score 0.
Game 16, Inning 3: Starting.
Game 16, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 3, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 3, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 16, Inning 3, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 16, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 16, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 16, Inning 3: Completed with score 1.
Game 16, Inning 4: Starting.
Game 16, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 4: Completed with score 0.
Game 16, Inning 5: Starting.
Game 16, Inning 5, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 5, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 16, Inning 5, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 16, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 5: Completed with score 0.
Game 16, Inning 6: Starting.
Game 16, Inning 6, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 6, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: called_strike
Game 16, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 6, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 16, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 6: Completed with score 0.
Game 16, Inning 7: Starting.
Game 16, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 7: Completed with score 0.
Game 16, Inning 8: Starting.
Game 16, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 16, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 16, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 8: Completed with score 0.
Game 16, Inning 9: Starting.
Game 16, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 16, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 16, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 16, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 16, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 16, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 16, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 16, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 16, Inning 9, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 16, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 16, Inning 9: Completed with score 0.
Game 16 completed. Total Score: 1
Game 17, Inning 1: Starting.
Game 17, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 17, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 17, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 17, Inning 1: Completed with score 2.
Game 17, Inning 2: Starting.
Game 17, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 2, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 2, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 2, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 2: Completed with score 0.
Game 17, Inning 3: Starting.
Game 17, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 3, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 17, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 3, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 17, Inning 3: Completed with score 2.
Game 17, Inning 4: Starting.
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 4, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 4, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 17, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 4, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 4: Completed with score 0.
Game 17, Inning 5: Starting.
Game 17, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 5, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 5, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 17, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 5, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 17, Inning 5, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 5: Completed with score 0.
Game 17, Inning 6: Starting.
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 17, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 17, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 17, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 17, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 6: Completed with score 0.
Game 17, Inning 7: Starting.
Game 17, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 17, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 7, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 17, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 7: Completed with score 0.
Game 17, Inning 8: Starting.
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 0, Count: 3-0, Pitch Type: curveball, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 3-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 17, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 17, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 4
Game 17, Inning 8: Completed with score 4.
Game 17, Inning 9: Starting.
Game 17, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 17, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 17, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 17, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 17, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: called_strike
Game 17, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 17, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 17, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 17, Inning 9, Outs: 2, Count: 3-1, Pitch Type: splitter, Outcome: called_strike
Game 17, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 17, Inning 9, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 17, Inning 9: Completed with score 0.
Game 17 completed. Total Score: 8
Game 18, Inning 1: Starting.
Game 18, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 18, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-1, Pitch Type: splitter, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 18, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 18, Inning 1: Completed with score 4.
Game 18, Inning 2: Starting.
Game 18, Inning 2, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 18, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 2, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 2, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 2: Completed with score 0.
Game 18, Inning 3: Starting.
Game 18, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 3, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 18, Inning 3, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 3: Completed with score 0.
Game 18, Inning 4: Starting.
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 18, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 18, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 18, Inning 4: Completed with score 1.
Game 18, Inning 5: Starting.
Game 18, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 5: Completed with score 0.
Game 18, Inning 6: Starting.
Game 18, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 18, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 18, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 18, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 18, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 6: Completed with score 0.
Game 18, Inning 7: Starting.
Game 18, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 18, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 18, Inning 7, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 7: Completed with score 0.
Game 18, Inning 8: Starting.
Game 18, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 18, Inning 8, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 18, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 8, Outs: 2, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 8: Completed with score 0.
Game 18, Inning 9: Starting.
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 18, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 18, Inning 9, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 18, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 18, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 18, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 18, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 18, Inning 9: Completed with score 0.
Game 18 completed. Total Score: 5
Game 19, Inning 1: Starting.
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 1, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 1, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 19, Inning 1, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 1, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 1: Completed with score 0.
Game 19, Inning 2: Starting.
Game 19, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 2, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 2: Completed with score 0.
Game 19, Inning 3: Starting.
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 19, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 3, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 3, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 19, Inning 3: Completed with score 1.
Game 19, Inning 4: Starting.
Game 19, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 4, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 4, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 4: Completed with score 0.
Game 19, Inning 5: Starting.
Game 19, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 19, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 19, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 19, Inning 5, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 19, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 5, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 5: Completed with score 0.
Game 19, Inning 6: Starting.
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 19, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 19, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 6: Completed with score 0.
Game 19, Inning 7: Starting.
Game 19, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 19, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 19, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 7, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 19, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 7: Completed with score 0.
Game 19, Inning 8: Starting.
Game 19, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 8, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 19, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 8, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 19, Inning 8, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 19, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 19, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 19, Inning 8, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 8: Completed with score 0.
Game 19, Inning 9: Starting.
Game 19, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 19, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 19, Inning 9, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 19, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 19, Inning 9, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 19, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 19, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 19, Inning 9, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 19, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 19, Inning 9: Completed with score 0.
Game 19 completed. Total Score: 1
Game 20, Inning 1: Starting.
Game 20, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 1, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 20, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 1, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 1: Completed with score 0.
Game 20, Inning 2: Starting.
Game 20, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 2, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 2: Completed with score 0.
Game 20, Inning 3: Starting.
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 3, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 20, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: ball
Game 20, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 3: Completed with score 0.
Game 20, Inning 4: Starting.
Game 20, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 20, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 20, Inning 4, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 20, Inning 4, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 4, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 4: Completed with score 0.
Game 20, Inning 5: Starting.
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 5, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 20, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 5, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 5: Completed with score 0.
Game 20, Inning 6: Starting.
Game 20, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 20, Inning 6, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 20, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 6, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 6, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 6, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 6, Outs: 2, Count: 2-1, Pitch Type: curveball, Outcome: called_strike
Game 20, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 6: Completed with score 0.
Game 20, Inning 7: Starting.
Game 20, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 7, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 20, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 7, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 7: Completed with score 0.
Game 20, Inning 8: Starting.
Game 20, Inning 8, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 20, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 20, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 8: Completed with score 0.
Game 20, Inning 9: Starting.
Game 20, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 20, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 20, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 20, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 20, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 20, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 20, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 20, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 20, Inning 9, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 20, Inning 9: Completed with score 0.
Game 20 completed. Total Score: 0
Game 21, Inning 1: Starting.
Game 21, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 1, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 1, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 1: Completed with score 0.
Game 21, Inning 2: Starting.
Game 21, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 2, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 2, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 21, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 21, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 2: Completed with score 0.
Game 21, Inning 3: Starting.
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: called_strike
Game 21, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 3, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 21, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 3, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 21, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 21, Inning 3: Completed with score 1.
Game 21, Inning 4: Starting.
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 21, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 4, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 4, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 21, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 21, Inning 4: Completed with score 2.
Game 21, Inning 5: Starting.
Game 21, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 21, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 5: Completed with score 0.
Game 21, Inning 6: Starting.
Game 21, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 21, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 21, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 1, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 21, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 6, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 6: Completed with score 0.
Game 21, Inning 7: Starting.
Game 21, Inning 7, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 21, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 7: Completed with score 0.
Game 21, Inning 8: Starting.
Game 21, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 21, Inning 8, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 21, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 21, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 21, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 21, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 21, Inning 8, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 8: Completed with score 0.
Game 21, Inning 9: Starting.
Game 21, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 21, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: called_strike
Game 21, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 21, Inning 9, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 21, Inning 9, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: swinging_strike
Batter struck out!
Game 21, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 21, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 21, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 21, Inning 9: Completed with score 0.
Game 21 completed. Total Score: 3
Game 22, Inning 1: Starting.
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 1, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 22, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 22, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 1, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 22, Inning 1, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 1: Completed with score 0.
Game 22, Inning 2: Starting.
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Runs scored: 1, Bases after play [0, 1, 1]
Runs scored: 1, Bases after play: [0, 1, 1]
Game 22, Inning 2, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 22, Inning 2: Completed with score 1.
Game 22, Inning 3: Starting.
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 22, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 22, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 3, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 22, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 22, Inning 3, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 22, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 3: Completed with score 0.
Game 22, Inning 4: Starting.
Game 22, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 4, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 22, Inning 4, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 4, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 4, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 4: Completed with score 0.
Game 22, Inning 5: Starting.
Game 22, Inning 5, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 22, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 22, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 5, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 22, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: called_strike
Batter struck out!
Game 22, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 22, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 5: Completed with score 0.
Game 22, Inning 6: Starting.
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 6, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 22, Inning 6, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 22, Inning 6, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 22, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 6: Completed with score 0.
Game 22, Inning 7: Starting.
Game 22, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 22, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 7, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 22, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 7, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 7: Completed with score 0.
Game 22, Inning 8: Starting.
Game 22, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 22, Inning 8, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 8, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 22, Inning 8, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 22, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 22, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 8: Completed with score 0.
Game 22, Inning 9: Starting.
Game 22, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 22, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 22, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 22, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 22, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 22, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 22, Inning 9: Completed with score 0.
Game 22 completed. Total Score: 1
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 44.11it/s]
Game 23, Inning 1: Starting.
Game 23, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 1, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 1, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 1, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 23, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 1: Completed with score 0.
Game 23, Inning 2: Starting.
Game 23, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 2, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 2: Completed with score 0.
Game 23, Inning 3: Starting.
Game 23, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 3, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 23, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 3, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 23, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 23, Inning 3: Completed with score 2.
Game 23, Inning 4: Starting.
Game 23, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 4, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 4, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 4: Completed with score 0.
Game 23, Inning 5: Starting.
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 5, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 5, Outs: 2, Count: 2-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 5: Completed with score 0.
Game 23, Inning 6: Starting.
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 23, Inning 6, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 23, Inning 6, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 23, Inning 6, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: swinging_strike
Game 23, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 23, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 23, Inning 6: Completed with score 3.
Game 23, Inning 7: Starting.
Game 23, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 23, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 23, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 7, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 7: Completed with score 0.
Game 23, Inning 8: Starting.
Game 23, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 23, Inning 8, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 23, Inning 8, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 23, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 23, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 8: Completed with score 0.
Game 23, Inning 9: Starting.
Game 23, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 23, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 23, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 23, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 23, Inning 9, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 23, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 23, Inning 9, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 23, Inning 9, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 23, Inning 9: Completed with score 0.
Game 23 completed. Total Score: 5
Game 24, Inning 1: Starting.
Game 24, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 1, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 1, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 1, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 1: Completed with score 1.
Game 24, Inning 2: Starting.
Game 24, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 2, Outs: 2, Count: 1-1, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 2, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 2: Completed with score 0.
Game 24, Inning 3: Starting.
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 3, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 3, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 24, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 3, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 3, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 24, Inning 3: Completed with score 1.
Game 24, Inning 4: Starting.
Game 24, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 4, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 4: Completed with score 0.
Game 24, Inning 5: Starting.
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 0, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 5, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 24, Inning 5, Outs: 1, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 1, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 24, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 5, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 24, Inning 5, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 24, Inning 5, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 5: Completed with score 0.
Game 24, Inning 6: Starting.
Game 24, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 24, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 6, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 6, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 24, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: cutter, Outcome: foul
Game 24, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 6: Completed with score 0.
Game 24, Inning 7: Starting.
Game 24, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 7, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 7: Completed with score 0.
Game 24, Inning 8: Starting.
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 0, Count: 2-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 8, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 24, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 24, Inning 8, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: called_strike
Game 24, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 8, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 8: Completed with score 0.
Game 24, Inning 9: Starting.
Game 24, Inning 9, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 24, Inning 9, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 24, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 24, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 24, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 24, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 24, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 24, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 24, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 24, Inning 9, Outs: 2, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 24, Inning 9: Completed with score 0.
Game 24 completed. Total Score: 2
Game 25, Inning 1: Starting.
Game 25, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 25, Inning 1, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 1, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 1: Completed with score 0.
Game 25, Inning 2: Starting.
Game 25, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 2, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 25, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 25, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 2, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 2, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 2: Completed with score 0.
Game 25, Inning 3: Starting.
Game 25, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 3, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: swinging_strike
Game 25, Inning 3, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 3, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 25, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 3, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 3: Completed with score 0.
Game 25, Inning 4: Starting.
Game 25, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 25, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 4: Completed with score 0.
Game 25, Inning 5: Starting.
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 0, Count: 2-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 25, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 5, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 5, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 5: Completed with score 0.
Game 25, Inning 6: Starting.
Game 25, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 6, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 25, Inning 6, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 25, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 6, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 6: Completed with score 0.
Game 25, Inning 7: Starting.
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 25, Inning 7, Outs: 0, Count: 2-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 25, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 25, Inning 7, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 25, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 25, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 25, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 7: Completed with score 0.
Game 25, Inning 8: Starting.
Game 25, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 25, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 25, Inning 8, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 25, Inning 8, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 25, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 25, Inning 8, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 8: Completed with score 0.
Game 25, Inning 9: Starting.
Game 25, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 25, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 3-0, Pitch Type: cutter, Outcome: called_strike
Game 25, Inning 9, Outs: 1, Count: 3-1, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 25, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 25, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 25, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 25, Inning 9, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 25, Inning 9: Completed with score 0.
Game 25 completed. Total Score: 0
Game 26, Inning 1: Starting.
Game 26, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 1, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: ball
Batter walked!
Game 26, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 26, Inning 1, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 1, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 1, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 1, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 1: Completed with score 0.
Game 26, Inning 2: Starting.
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 26, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 2, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 2, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 2: Completed with score 0.
Game 26, Inning 3: Starting.
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 3, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 3, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 3, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 3: Completed with score 0.
Game 26, Inning 4: Starting.
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 26, Inning 4, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 4, Bases after play [0, 0, 0]
Runs scored: 4, Bases after play: [0, 0, 0]
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 4, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 4, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 4
Game 26, Inning 4: Completed with score 4.
Game 26, Inning 5: Starting.
Game 26, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 26, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 1, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: splitter, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 26, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 26, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 5, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 26, Inning 5, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 3
Game 26, Inning 5: Completed with score 3.
Game 26, Inning 6: Starting.
Game 26, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: foul
Game 26, Inning 6, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 6, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 26, Inning 6, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 26, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 6: Completed with score 0.
Game 26, Inning 7: Starting.
Game 26, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 7, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 7, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 26, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 26, Inning 7, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 7: Completed with score 0.
Game 26, Inning 8: Starting.
Game 26, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 26, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 26, Inning 8, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 8, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 26, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 26, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 26, Inning 8, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 26, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 8: Completed with score 0.
Game 26, Inning 9: Starting.
Game 26, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 26, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 26, Inning 9, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 26, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 26, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 26, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 26, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 26, Inning 9, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 26, Inning 9, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 26, Inning 9: Completed with score 0.
Game 26 completed. Total Score: 7
Game 27, Inning 1: Starting.
Game 27, Inning 1, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 1, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 1: Completed with score 0.
Game 27, Inning 2: Starting.
Game 27, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 2, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 2, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 2, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 2, Outs: 2, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 2: Completed with score 0.
Game 27, Inning 3: Starting.
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 3, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 3, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 3, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 3, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 3: Completed with score 0.
Game 27, Inning 4: Starting.
Game 27, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 4, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 27, Inning 4, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 27, Inning 4, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: swinging_strike
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 4: Completed with score 0.
Game 27, Inning 5: Starting.
Game 27, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 5, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 27, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 5, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 5, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 27, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 5: Completed with score 0.
Game 27, Inning 6: Starting.
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: foul
Game 27, Inning 6, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-0, Pitch Type: slider, Outcome: swinging_strike
Game 27, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 27, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 27, Inning 6, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 27, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 6, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 6: Completed with score 0.
Game 27, Inning 7: Starting.
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 7, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 27, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 27, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 7: Completed with score 0.
Game 27, Inning 8: Starting.
Game 27, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 27, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 27, Inning 8, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 27, Inning 8, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 8: Completed with score 0.
Game 27, Inning 9: Starting.
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 27, Inning 9, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 27, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 27, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 27, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 27, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 27, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 27, Inning 9, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 27, Inning 9, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 27, Inning 9: Completed with score 0.
Game 27 completed. Total Score: 0
Game 28, Inning 1: Starting.
Game 28, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 1, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 1, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 1, Outs: 1, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 28, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 1, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 1, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 1: Completed with score 0.
Game 28, Inning 2: Starting.
Game 28, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 2, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 2, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 2: Completed with score 0.
Game 28, Inning 3: Starting.
Game 28, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 28, Inning 3, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 3, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 3: Completed with score 0.
Game 28, Inning 4: Starting.
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 4, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 28, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 4: Completed with score 0.
Game 28, Inning 5: Starting.
Game 28, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 5, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 5, Outs: 0, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 28, Inning 5, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 5, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 28, Inning 5, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 28, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 5: Completed with score 0.
Game 28, Inning 6: Starting.
Game 28, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 6, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 28, Inning 6, Outs: 2, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 28, Inning 6, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 6: Completed with score 0.
Game 28, Inning 7: Starting.
Game 28, Inning 7, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 7, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 7, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 7, Outs: 2, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 7: Completed with score 0.
Game 28, Inning 8: Starting.
Game 28, Inning 8, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 28, Inning 8, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 28, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Game 28, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 8, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 3-2, Pitch Type: curveball, Outcome: ball
Batter walked!
Game 28, Inning 8, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 28, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 8, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 28, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 28, Inning 8: Completed with score 0.
Game 28, Inning 9: Starting.
Game 28, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 28, Inning 9, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 1]
Runs scored: 1, Bases after play: [1, 1, 1]
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 28, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 28, Inning 9, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 2-1, Pitch Type: changeup, Outcome: ball
Game 28, Inning 9, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 28, Inning 9, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 28, Inning 9: Completed with score 2.
Game 28 completed. Total Score: 2
Game 29, Inning 1: Starting.
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: triple
Runs scored: 1, Bases after play [0, 0, 1]
Runs scored: 1, Bases after play: [0, 0, 1]
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 1, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 0, 0]
Runs scored: 1, Bases after play: [1, 0, 0]
Game 29, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 1, Outs: 0, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 29, Inning 1, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 1, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Inning completed. Bases emptied. Score: 2
Game 29, Inning 1: Completed with score 2.
Game 29, Inning 2: Starting.
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: foul
Game 29, Inning 2, Outs: 0, Count: 3-2, Pitch Type: curveball, Outcome: called_strike
Batter struck out!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 2, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 2, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 2, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 29, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 2: Completed with score 1.
Game 29, Inning 3: Starting.
Game 29, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 3, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 3, Outs: 2, Count: 0-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 3: Completed with score 0.
Game 29, Inning 4: Starting.
Game 29, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 4, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 29, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 29, Inning 4, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 4, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 4, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 29, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 4, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 4: Completed with score 0.
Game 29, Inning 5: Starting.
Game 29, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 5, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 29, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 5: Completed with score 0.
Game 29, Inning 6: Starting.
Game 29, Inning 6, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 6, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 29, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 29, Inning 6, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 29, Inning 6, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 29, Inning 6: Completed with score 1.
Game 29, Inning 7: Starting.
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: single
Game 29, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 29, Inning 7, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 7, Outs: 0, Count: 1-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 7, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 7, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 29, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 7: Completed with score 0.
Game 29, Inning 8: Starting.
Game 29, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: called_strike
Game 29, Inning 8, Outs: 0, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 29, Inning 8, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 8, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 8, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 29, Inning 8, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 29, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 8, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 8: Completed with score 0.
Game 29, Inning 9: Starting.
Game 29, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 29, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 29, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 29, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 29, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 29, Inning 9: Completed with score 0.
Game 29 completed. Total Score: 4
Game 30, Inning 1: Starting.
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 2-1, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 0, Count: 3-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 1, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 1, Outs: 0, Count: 0-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: double_play
Double play!
Game 30, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 1, Outs: 2, Count: 2-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 1: Completed with score 0.
Game 30, Inning 2: Starting.
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 0-1, Pitch Type: splitter, Outcome: swinging_strike
Game 30, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 2-0, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 2, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 2, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 2: Completed with score 0.
Game 30, Inning 3: Starting.
Game 30, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 3, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 3, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 3, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 3: Completed with score 0.
Game 30, Inning 4: Starting.
Game 30, Inning 4, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 4, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 4, Outs: 2, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 4, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 4, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 4: Completed with score 0.
Game 30, Inning 5: Starting.
Game 30, Inning 5, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: foul
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 5, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 5, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 5, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 5, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 3, Bases after play [0, 0, 0]
Runs scored: 3, Bases after play: [0, 0, 0]
Game 30, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 5, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 2-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 5, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 3
Game 30, Inning 5: Completed with score 3.
Game 30, Inning 6: Starting.
Game 30, Inning 6, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 30, Inning 6, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: hit_by_pitch
Batter hit by pitch!
Game 30, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 6, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 6, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 6, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 6, Outs: 2, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 6, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 6, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 6: Completed with score 0.
Game 30, Inning 7: Starting.
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 7, Outs: 0, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 7, Outs: 1, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 30, Inning 7, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 30, Inning 7, Outs: 2, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 1-0, Pitch Type: cutter, Outcome: swinging_strike
Game 30, Inning 7, Outs: 2, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 30, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 7: Completed with score 0.
Game 30, Inning 8: Starting.
Game 30, Inning 8, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 8, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 8, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 30, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 8, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: swinging_strike
Game 30, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: foul
Game 30, Inning 8, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 30, Inning 8: Completed with score 0.
Game 30, Inning 9: Starting.
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: single
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: single
Runs scored: 1, Bases after play [1, 1, 0]
Runs scored: 1, Bases after play: [1, 1, 0]
Game 30, Inning 9, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 30, Inning 9, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: called_strike
Batter struck out!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: hit_by_pitch
Batter hit by pitch!
Game 30, Inning 9, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 30, Inning 9, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball
Batter walked!
Runs scored: 1, Bases after play: [1, 1, 1]
Game 30, Inning 9, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: foul
Foul ball!
Game 30, Inning 9, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 30, Inning 9, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 2
Game 30, Inning 9: Completed with score 2.
Game 30 completed. Total Score: 5
Game 31, Inning 1: Starting.
Game 31, Inning 1, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 1, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 0, Count: 3-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: foul
Foul ball!
Game 31, Inning 1, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 1, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 1: Completed with score 0.
Game 31, Inning 2: Starting.
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 2, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 2, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 2, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 2, Outs: 0, Count: 2-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 2, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 2, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 2: Completed with score 1.
Game 31, Inning 3: Starting.
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: single
Game 31, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 3, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 3, Outs: 0, Count: 3-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 3, Outs: 0, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 3, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 3, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 3, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 3: Completed with score 0.
Game 31, Inning 4: Starting.
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 4, Outs: 0, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 4, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 4, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 4: Completed with score 0.
Game 31, Inning 5: Starting.
Game 31, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 31, Inning 5, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 5, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 5, Outs: 1, Count: 1-2, Pitch Type: splitter, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 5, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 5, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 5, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 5: Completed with score 1.
Game 31, Inning 6: Starting.
Game 31, Inning 6, Outs: 0, Count: 0-0, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 6, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 31, Inning 6, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 1, Count: 0-1, Pitch Type: curveball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 1-1, Pitch Type: splitter, Outcome: swinging_strike
Game 31, Inning 6, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 1, Count: 2-2, Pitch Type: splitter, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 6, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 6, Outs: 2, Count: 0-1, Pitch Type: cutter, Outcome: ball
Game 31, Inning 6, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 6: Completed with score 0.
Game 31, Inning 7: Starting.
Game 31, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 7, Outs: 0, Count: 1-1, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 0, Count: 2-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 1, Count: 0-1, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 7, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 31, Inning 7, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: changeup, Outcome: called_strike
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 2, Bases after play [0, 0, 0]
Runs scored: 2, Bases after play: [0, 0, 0]
Game 31, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 31, Inning 7, Outs: 2, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 7, Outs: 2, Count: 0-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 1-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 7, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 2
Game 31, Inning 7: Completed with score 2.
Game 31, Inning 8: Starting.
Game 31, Inning 8, Outs: 0, Count: 0-0, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 1, Count: 0-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 3-1, Pitch Type: slider, Outcome: ball
Batter walked!
Game 31, Inning 8, Outs: 2, Count: 0-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 31, Inning 8, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 31, Inning 8, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: changeup, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: slider, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: foul
Game 31, Inning 8, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: called_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 31, Inning 8: Completed with score 0.
Game 31, Inning 9: Starting.
Game 31, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 31, Inning 9, Outs: 0, Count: 0-2, Pitch Type: cutter, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 31, Inning 9, Outs: 0, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: swinging_strike
Game 31, Inning 9, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 31, Inning 9, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 1-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 2-0, Pitch Type: curveball, Outcome: ball
Game 31, Inning 9, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: called_strike
Game 31, Inning 9, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 31, Inning 9, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 31, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 1
Game 31, Inning 9: Completed with score 1.
Game 31 completed. Total Score: 5
Game 32, Inning 1: Starting.
Game 32, Inning 1, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 1-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 0, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 2-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 1, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: called_strike
Batter struck out!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 1, Outs: 1, Count: 2-1, Pitch Type: cutter, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 3-1, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 1, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: swinging_strike
Game 32, Inning 1, Outs: 1, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 1, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 1-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 2-2, Pitch Type: curveball, Outcome: ball
Game 32, Inning 1, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 1, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 1: Completed with score 0.
Game 32, Inning 2: Starting.
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 2, Outs: 0, Count: 0-1, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 2, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 0, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 2, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 2, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 2-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 2, Outs: 1, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 1, Count: 1-0, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: changeup, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 2, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 2, Outs: 2, Count: 0-1, Pitch Type: slider, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 1-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 2, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 2, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 2: Completed with score 0.
Game 32, Inning 3: Starting.
Game 32, Inning 3, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 0, Count: 0-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 3, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 3, Outs: 1, Count: 0-2, Pitch Type: changeup, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 3, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 3, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 3, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 3: Completed with score 0.
Game 32, Inning 4: Starting.
Game 32, Inning 4, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 4, Outs: 0, Count: 0-1, Pitch Type: cutter, Outcome: foul
Foul ball!
Game 32, Inning 4, Outs: 0, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 4, Outs: 0, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 4, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 4, Outs: 1, Count: 0-1, Pitch Type: splitter, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 1-1, Pitch Type: slider, Outcome: called_strike
Game 32, Inning 4, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 4, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 4, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 4, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 4, Outs: 2, Count: 1-0, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 4: Completed with score 0.
Game 32, Inning 5: Starting.
Game 32, Inning 5, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 1, Count: 0-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 5, Outs: 1, Count: 0-1, Pitch Type: slider, Outcome: foul
Foul ball!
Game 32, Inning 5, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 5, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 5, Outs: 1, Count: 1-2, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 5, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 5: Completed with score 0.
Game 32, Inning 6: Starting.
Game 32, Inning 6, Outs: 0, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 6, Outs: 0, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: double
Game 32, Inning 6, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 6, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: swinging_strike
Game 32, Inning 6, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: changeup, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 6, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 6, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 6: Completed with score 0.
Game 32, Inning 7: Starting.
Game 32, Inning 7, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 7, Outs: 1, Count: 0-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 1, Count: 0-2, Pitch Type: splitter, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 0-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-2, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: foul
Game 32, Inning 7, Outs: 1, Count: 2-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 3-2, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 1, Count: 1-0, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 3-0, Pitch Type: fastball, Outcome: ball
Batter walked!
Game 32, Inning 7, Outs: 2, Count: 0-0, Pitch Type: cutter, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 1-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 7, Outs: 2, Count: 1-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 7, Outs: 2, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 7, Outs: 2, Count: 2-2, Pitch Type: changeup, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 7: Completed with score 0.
Game 32, Inning 8: Starting.
Game 32, Inning 8, Outs: 0, Count: 0-0, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 8, Outs: 0, Count: 0-1, Pitch Type: changeup, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 8, Outs: 0, Count: 2-1, Pitch Type: curveball, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 1, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 1-0, Pitch Type: curveball, Outcome: swinging_strike
Game 32, Inning 8, Outs: 1, Count: 1-1, Pitch Type: curveball, Outcome: ball
Game 32, Inning 8, Outs: 1, Count: 2-1, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 8, Outs: 1, Count: 2-2, Pitch Type: cutter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 8, Outs: 2, Count: 0-0, Pitch Type: slider, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 8, Outs: 2, Count: 2-0, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 2-1, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 8, Outs: 2, Count: 2-2, Pitch Type: splitter, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Inning completed. Bases emptied. Score: 0
Game 32, Inning 8: Completed with score 0.
Game 32, Inning 9: Starting.
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: fastball, Outcome: ball_in_play
Ball in play! Result: home_run
Runs scored: 1, Bases after play [0, 0, 0]
Runs scored: 1, Bases after play: [0, 0, 0]
Game 32, Inning 9, Outs: 0, Count: 0-0, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-1, Pitch Type: slider, Outcome: swinging_strike
Game 32, Inning 9, Outs: 0, Count: 0-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 0, Count: 1-2, Pitch Type: changeup, Outcome: swinging_strike
Batter struck out!
Game 32, Inning 9, Outs: 1, Count: 0-0, Pitch Type: splitter, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 1-0, Pitch Type: fastball, Outcome: foul
Foul ball!
Game 32, Inning 9, Outs: 1, Count: 1-1, Pitch Type: cutter, Outcome: called_strike
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: slider, Outcome: foul
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 1, Count: 1-2, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 2-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 1, Count: 3-2, Pitch Type: slider, Outcome: ball_in_play
Ball in play! Result: out
Batter is out!
Game 32, Inning 9, Outs: 2, Count: 0-0, Pitch Type: fastball, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 1-0, Pitch Type: fastball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 1-1, Pitch Type: curveball, Outcome: called_strike
Game 32, Inning 9, Outs: 2, Count: 1-2, Pitch Type: slider, Outcome: ball
Game 32, Inning 9, Outs: 2, Count: 2-2, Pitch Type: fastball, Outcome: foul
Game 32, Inning 9, Outs: 2, Count: 2-2, Pitch Type: slider, Outcome: swinging_strike
Batter struck out!
Inning completed. Bases emptied. Score: 1
Game 32, Inning 9: Completed with score 1.
Game 32 completed. Total Score: 1
Simulating Games: 100%|██████████| 32/32 [00:00<00:00, 44.88it/s]
Season 15 completed. Results: {'total_runs': 96, 'total_hits': 255, 'total_walks': 83, 'total_strikeouts': 284, 'total_innings': 288, 'whip': 1.1736111111111112, 'era': 3.0, 'average_runs_per_game': 3.0, 'game_results': [0, 4, 2, 2, 3, 3, 2, 6, 4, 2, 1, 4, 2, 4, 7, 1, 8, 5, 1, 0, 3, 1, 5, 2, 0, 7, 0, 2, 4, 5, 5, 1]}

Season 1: Total Runs: 91, Total Hits: 268, Total Walks: 79, Total Strikeouts: 277, ERA: 2.84, WHIP: 1.20, Hits/9: 8.38, Walks/9: 2.47, Strikeouts/9: 8.66
Season 2: Total Runs: 83, Total Hits: 250, Total Walks: 79, Total Strikeouts: 274, ERA: 2.59, WHIP: 1.14, Hits/9: 7.81, Walks/9: 2.47, Strikeouts/9: 8.56
Season 3: Total Runs: 85, Total Hits: 232, Total Walks: 101, Total Strikeouts: 261, ERA: 2.66, WHIP: 1.16, Hits/9: 7.25, Walks/9: 3.16, Strikeouts/9: 8.16
Season 4: Total Runs: 103, Total Hits: 272, Total Walks: 91, Total Strikeouts: 276, ERA: 3.22, WHIP: 1.26, Hits/9: 8.50, Walks/9: 2.84, Strikeouts/9: 8.62
Season 5: Total Runs: 101, Total Hits: 255, Total Walks: 111, Total Strikeouts: 309, ERA: 3.16, WHIP: 1.27, Hits/9: 7.97, Walks/9: 3.47, Strikeouts/9: 9.66
Season 6: Total Runs: 97, Total Hits: 243, Total Walks: 94, Total Strikeouts: 269, ERA: 3.03, WHIP: 1.17, Hits/9: 7.59, Walks/9: 2.94, Strikeouts/9: 8.41
Season 7: Total Runs: 76, Total Hits: 242, Total Walks: 94, Total Strikeouts: 292, ERA: 2.38, WHIP: 1.17, Hits/9: 7.56, Walks/9: 2.94, Strikeouts/9: 9.12
Season 8: Total Runs: 71, Total Hits: 233, Total Walks: 99, Total Strikeouts: 270, ERA: 2.22, WHIP: 1.15, Hits/9: 7.28, Walks/9: 3.09, Strikeouts/9: 8.44
Season 9: Total Runs: 112, Total Hits: 259, Total Walks: 106, Total Strikeouts: 274, ERA: 3.50, WHIP: 1.27, Hits/9: 8.09, Walks/9: 3.31, Strikeouts/9: 8.56
Season 10: Total Runs: 76, Total Hits: 248, Total Walks: 91, Total Strikeouts: 290, ERA: 2.38, WHIP: 1.18, Hits/9: 7.75, Walks/9: 2.84, Strikeouts/9: 9.06
Season 11: Total Runs: 89, Total Hits: 248, Total Walks: 94, Total Strikeouts: 260, ERA: 2.78, WHIP: 1.19, Hits/9: 7.75, Walks/9: 2.94, Strikeouts/9: 8.12
Season 12: Total Runs: 77, Total Hits: 230, Total Walks: 88, Total Strikeouts: 250, ERA: 2.41, WHIP: 1.10, Hits/9: 7.19, Walks/9: 2.75, Strikeouts/9: 7.81
Season 13: Total Runs: 84, Total Hits: 249, Total Walks: 88, Total Strikeouts: 266, ERA: 2.62, WHIP: 1.17, Hits/9: 7.78, Walks/9: 2.75, Strikeouts/9: 8.31
Season 14: Total Runs: 80, Total Hits: 249, Total Walks: 88, Total Strikeouts: 282, ERA: 2.50, WHIP: 1.17, Hits/9: 7.78, Walks/9: 2.75, Strikeouts/9: 8.81
Season 15: Total Runs: 96, Total Hits: 255, Total Walks: 83, Total Strikeouts: 284, ERA: 3.00, WHIP: 1.17, Hits/9: 7.97, Walks/9: 2.59, Strikeouts/9: 8.88
In [57]:
# Extract season data
season_numbers = range(1, len(all_results) + 1)  # Season indices
total_runs = [season["total_runs"] for season in all_results]
total_hits = [season["total_hits"] for season in all_results]
total_walks = [season["total_walks"] for season in all_results]
total_strikeouts = [season["total_strikeouts"] for season in all_results]
eras = [season["era"] for season in all_results]
whips = [season["whip"] for season in all_results]

# Bar chart for Runs, Hits, Walks, and Strikeouts
metrics = {
    "Runs": total_runs,
    "Hits": total_hits,
    "Walks": total_walks,
    "Strikeouts": total_strikeouts,
}

for metric, values in metrics.items():
    plt.figure(figsize=(10, 6))
    plt.bar(season_numbers, values, color='blue', alpha=0.7, edgecolor='black')
    plt.title(f"Total {metric} Per Season")
    plt.xlabel("Season Number")
    plt.ylabel(f"Total {metric}")
    plt.xticks(season_numbers)
    plt.grid(axis='y', linestyle="--", alpha=0.7)
    plt.show()

# Create a line plot for ERA across seasons
# plt.figure(figsize=(10, 6))
# plt.plot(season_numbers, eras, marker='o', color='orange', label="ERA")
# plt.title("ERA Across Seasons")
# plt.xlabel("Season Number")
# plt.ylabel("ERA")
# plt.xticks(season_numbers)
# plt.grid(axis='y', linestyle="--", alpha=0.7)
# plt.legend()
# plt.show()

# Create a line plot for WHIP across seasons
plt.figure(figsize=(10, 6))
plt.plot(season_numbers, whips, marker='o', color='green', label="WHIP")
plt.title("WHIP Across Seasons")
plt.xlabel("Season Number")
plt.ylabel("WHIP")
plt.xticks(season_numbers)
plt.grid(axis='y', linestyle="--", alpha=0.7)
plt.legend()
plt.show()

# Combine ERA and WHIP on the same plot for comparison
# plt.figure(figsize=(10, 6))
# plt.plot(season_numbers, eras, marker='o', color='orange', label="ERA")
# plt.plot(season_numbers, whips, marker='s', color='green', label="WHIP")
# plt.title("ERA and WHIP Across Seasons")
# plt.xlabel("Season Number")
# plt.ylabel("Value")
# plt.xticks(season_numbers)
# plt.grid(axis='y', linestyle="--", alpha=0.7)
# plt.legend()
# plt.show()

# Boxplot for Runs Scored
# plt.figure(figsize=(10, 6))
# plt.boxplot([season["game_results"] for season in all_results], labels=[f"S{num}" for num in season_numbers])
# plt.title("Game Runs Distribution Per Season")
# plt.xlabel("Season")
# plt.ylabel("Runs Scored")
# plt.grid(axis='y', linestyle="--", alpha=0.7)
# plt.show()
In [58]:
df_pitches = pd.DataFrame(all_pitch_data)

# Display the first few rows of the DataFrame
print("Preview of Pitch DataFrame:")
print(df_pitches.head())

print(df_pitches["outcome"].value_counts())
Preview of Pitch DataFrame:
   season_number  game_number  inning_number count pitch_type  \
0              1            1              1    00   fastball   
1              1            1              1    10     cutter   
2              1            1              1    11   splitter   
3              1            1              1    12   fastball   
4              1            1              1    22   fastball   

           outcome result  
0             ball   None  
1  swinging_strike   None  
2             foul   None  
3             ball   None  
4             ball   None  
outcome
ball               24561
foul               12876
ball_in_play       12145
called_strike      11294
swinging_strike     8573
hit_by_pitch         178
Name: count, dtype: int64
In [59]:
# Filter for the relevant columns
df_filtered = df_pitches[["season_number", "game_number", "inning_number", "count", "pitch_type", "outcome", "result"]]

# Display the filtered DataFrame
print("Filtered DataFrame (Count, Pitch Type, Outcome):")
print(df_filtered.head())
Filtered DataFrame (Count, Pitch Type, Outcome):
   season_number  game_number  inning_number count pitch_type  \
0              1            1              1    00   fastball   
1              1            1              1    10     cutter   
2              1            1              1    11   splitter   
3              1            1              1    12   fastball   
4              1            1              1    22   fastball   

           outcome result  
0             ball   None  
1  swinging_strike   None  
2             foul   None  
3             ball   None  
4             ball   None  
In [60]:
df_filtered
Out[60]:
season_number game_number inning_number count pitch_type outcome result
0 1 1 1 00 fastball ball None
1 1 1 1 10 cutter swinging_strike None
2 1 1 1 11 splitter foul None
3 1 1 1 12 fastball ball None
4 1 1 1 22 fastball ball None
... ... ... ... ... ... ... ...
69622 15 32 9 10 fastball called_strike None
69623 15 32 9 11 curveball called_strike None
69624 15 32 9 12 slider ball None
69625 15 32 9 22 fastball foul None
69626 15 32 9 22 slider swinging_strike None

69627 rows × 7 columns

In [61]:
hit_by_pitch_count = df_filtered['outcome'].value_counts().get('hit_by_pitch', 0)
hit_by_pitch_count
Out[61]:
178
In [62]:
df_filtered.head(20)
Out[62]:
season_number game_number inning_number count pitch_type outcome result
0 1 1 1 00 fastball ball None
1 1 1 1 10 cutter swinging_strike None
2 1 1 1 11 splitter foul None
3 1 1 1 12 fastball ball None
4 1 1 1 22 fastball ball None
5 1 1 1 32 splitter ball_in_play single
6 1 1 1 00 fastball ball None
7 1 1 1 10 fastball ball None
8 1 1 1 20 fastball foul None
9 1 1 1 21 fastball ball_in_play out
10 1 1 1 00 fastball ball_in_play out
11 1 1 1 00 slider ball None
12 1 1 1 10 changeup called_strike None
13 1 1 1 11 cutter ball_in_play out
14 1 1 2 00 curveball called_strike None
15 1 1 2 01 slider ball None
16 1 1 2 11 slider ball None
17 1 1 2 21 cutter swinging_strike None
18 1 1 2 22 curveball ball None
19 1 1 2 32 slider swinging_strike None
In [63]:
df_filtered.loc[
    (df_filtered['result'].isnull()) & 
    (df_filtered['count'].str.endswith('2')) & 
    (df_filtered['outcome'].isin(['called_strike', 'swinging_strike'])),
    'result'
] = 'strikeout'

# Change 'None' to 'walk' if 'count' starts with 3 and 'outcome' is 'ball'
df_filtered.loc[
    (df_filtered['result'].isnull()) & 
    (df_filtered['count'].str.startswith('3')) & 
    (df_filtered['outcome'] == 'ball'),
    'result'
] = 'walk'

# Display updated DataFrame
df_filtered.head(20)
Out[63]:
season_number game_number inning_number count pitch_type outcome result
0 1 1 1 00 fastball ball None
1 1 1 1 10 cutter swinging_strike None
2 1 1 1 11 splitter foul None
3 1 1 1 12 fastball ball None
4 1 1 1 22 fastball ball None
5 1 1 1 32 splitter ball_in_play single
6 1 1 1 00 fastball ball None
7 1 1 1 10 fastball ball None
8 1 1 1 20 fastball foul None
9 1 1 1 21 fastball ball_in_play out
10 1 1 1 00 fastball ball_in_play out
11 1 1 1 00 slider ball None
12 1 1 1 10 changeup called_strike None
13 1 1 1 11 cutter ball_in_play out
14 1 1 2 00 curveball called_strike None
15 1 1 2 01 slider ball None
16 1 1 2 11 slider ball None
17 1 1 2 21 cutter swinging_strike None
18 1 1 2 22 curveball ball None
19 1 1 2 32 slider swinging_strike strikeout
In [64]:
df_filtered['final_result'] = df_filtered.groupby(
    (df_filtered['count'] == "00").cumsum()
)['result'].transform(lambda x: x.ffill().bfill())
In [65]:
df_filtered.head(20)
Out[65]:
season_number game_number inning_number count pitch_type outcome result final_result
0 1 1 1 00 fastball ball None single
1 1 1 1 10 cutter swinging_strike None single
2 1 1 1 11 splitter foul None single
3 1 1 1 12 fastball ball None single
4 1 1 1 22 fastball ball None single
5 1 1 1 32 splitter ball_in_play single single
6 1 1 1 00 fastball ball None out
7 1 1 1 10 fastball ball None out
8 1 1 1 20 fastball foul None out
9 1 1 1 21 fastball ball_in_play out out
10 1 1 1 00 fastball ball_in_play out out
11 1 1 1 00 slider ball None out
12 1 1 1 10 changeup called_strike None out
13 1 1 1 11 cutter ball_in_play out out
14 1 1 2 00 curveball called_strike None strikeout
15 1 1 2 01 slider ball None strikeout
16 1 1 2 11 slider ball None strikeout
17 1 1 2 21 cutter swinging_strike None strikeout
18 1 1 2 22 curveball ball None strikeout
19 1 1 2 32 slider swinging_strike strikeout strikeout
In [66]:
df_filtered['prev_pitch_type'] = df_filtered.groupby(['season_number', 'game_number', 'inning_number'])['pitch_type'].shift(1)
df_filtered['prev_result'] = df_filtered.groupby(['season_number', 'game_number', 'inning_number'])['outcome'].shift(1)
df_filtered.loc[df_filtered['count'] == '00', ['prev_pitch_type', 'prev_result']] = None
df_filtered['at_bat_length'] = (
    df_filtered.groupby(
        ['season_number', 'game_number', 'inning_number', df_filtered['count'].eq('00').cumsum()]
    )['pitch_type'].transform('size')
)
df_filtered['at_bat_id'] = (
    df_filtered['count'].eq('00').cumsum()
)
columns = ['at_bat_id'] + [col for col in df_filtered.columns if col != 'at_bat_id']
df_filtered = df_filtered[columns]
In [67]:
df_filtered.head(20)
Out[67]:
at_bat_id season_number game_number inning_number count pitch_type outcome result final_result prev_pitch_type prev_result at_bat_length
0 1 1 1 1 00 fastball ball None single None None 6
1 1 1 1 1 10 cutter swinging_strike None single fastball ball 6
2 1 1 1 1 11 splitter foul None single cutter swinging_strike 6
3 1 1 1 1 12 fastball ball None single splitter foul 6
4 1 1 1 1 22 fastball ball None single fastball ball 6
5 1 1 1 1 32 splitter ball_in_play single single fastball ball 6
6 2 1 1 1 00 fastball ball None out None None 4
7 2 1 1 1 10 fastball ball None out fastball ball 4
8 2 1 1 1 20 fastball foul None out fastball ball 4
9 2 1 1 1 21 fastball ball_in_play out out fastball foul 4
10 3 1 1 1 00 fastball ball_in_play out out None None 1
11 4 1 1 1 00 slider ball None out None None 3
12 4 1 1 1 10 changeup called_strike None out slider ball 3
13 4 1 1 1 11 cutter ball_in_play out out changeup called_strike 3
14 5 1 1 2 00 curveball called_strike None strikeout None None 6
15 5 1 1 2 01 slider ball None strikeout curveball called_strike 6
16 5 1 1 2 11 slider ball None strikeout slider ball 6
17 5 1 1 2 21 cutter swinging_strike None strikeout slider ball 6
18 5 1 1 2 22 curveball ball None strikeout cutter swinging_strike 6
19 5 1 1 2 32 slider swinging_strike strikeout strikeout curveball ball 6
In [68]:
outcome_distribution = df_filtered.groupby(['pitch_type', 'count'])['outcome'].value_counts(normalize=True)
In [69]:
outcome_distribution
Out[69]:
pitch_type  count  outcome        
changeup    00     ball               0.426302
                   called_strike      0.225949
                   swinging_strike    0.126214
                   foul               0.119153
                   ball_in_play       0.102383
                                        ...   
splitter    32     ball_in_play       0.275000
                   ball               0.275000
                   foul               0.225000
                   swinging_strike    0.175000
                   called_strike      0.050000
Name: proportion, Length: 388, dtype: float64
In [70]:
outcome_probabilities = df_filtered.groupby(['count', 'pitch_type'])['outcome'].value_counts(normalize=True).unstack()
strike_probabilities = outcome_probabilities['called_strike'] + outcome_probabilities['swinging_strike']
strike_data = strike_probabilities.unstack().fillna(0)
In [71]:
plt.figure(figsize=(10, 8))
sns.heatmap(strike_data, annot=True, cmap="plasma", fmt=".2f")
plt.title("% Strikes Thrown - Pitch Type by Count")
plt.xlabel("Pitch Type")
plt.ylabel("Count")
plt.show()
In [72]:
relevant_outcomes = ['called_strike', 'swinging_strike']
relevant_results = ['out', 'double_play']

strike_probabilities = (
    df_filtered.groupby(['count', 'pitch_type'])['outcome']
    .apply(lambda x: x.isin(relevant_outcomes).mean())
    .unstack()
)

out_probabilities = (
    df_filtered.groupby(['count', 'pitch_type'])['result']
    .apply(lambda x: x.isin(relevant_results).mean())
    .unstack()
)

combined_probabilities = strike_probabilities + out_probabilities

heatmap_data = combined_probabilities.fillna(0)

plt.figure(figsize=(10, 8))
sns.heatmap(heatmap_data, annot=True, cmap="hot", fmt=".2f")
plt.title("Probability of Called/Swinging Strikes or Balls in Play Resulting in Outs")
plt.xlabel("Pitch Type")
plt.ylabel("Count")
plt.show()
In [73]:
outcome_probabilities = df_filtered.groupby(['count', 'pitch_type'])['final_result'].value_counts(normalize=True).unstack()
In [74]:
out_probabilities = outcome_probabilities['out'] + outcome_probabilities['strikeout'] + outcome_probabilities['double_play']
In [75]:
heatmap_data = out_probabilities.unstack().fillna(0)
In [76]:
plt.figure(figsize=(10, 8))
sns.heatmap(heatmap_data, annot=True, cmap="viridis", fmt=".2f")
plt.title("Best Pitch Type by Count by Final Result")
plt.xlabel("Pitch Type")
plt.ylabel("Count")
plt.show()
In [77]:
window_size = 2  # Number of pitches in the sequence

# Ensure a clean copy of the DataFrame
df_filtered_copy = df_filtered.copy()

# Calculate pitch sequences within each at-bat
df_filtered_copy['pitch_sequence'] = (
    df_filtered_copy.groupby('at_bat_id')['pitch_type']
    .apply(lambda group: group.shift(1).fillna("") + " -> " + group)
    .reset_index(level=0, drop=True)
)

# For the first pitch of an at-bat, set the sequence to only the pitch_type
df_filtered_copy.loc[df_filtered_copy.index.isin(
    df_filtered_copy.groupby('at_bat_id').head(1).index), 'pitch_sequence'] = df_filtered_copy['pitch_type']

# Verify the result
print("Sample pitch sequences:")
print(df_filtered_copy[['at_bat_id', 'season_number', 'game_number', 'inning_number', 'pitch_type', 'pitch_sequence']])
Sample pitch sequences:
       at_bat_id  season_number  game_number  inning_number pitch_type  \
0              1              1            1              1   fastball   
1              1              1            1              1     cutter   
2              1              1            1              1   splitter   
3              1              1            1              1   fastball   
4              1              1            1              1   fastball   
...          ...            ...          ...            ...        ...   
69622      17843             15           32              9   fastball   
69623      17843             15           32              9  curveball   
69624      17843             15           32              9     slider   
69625      17843             15           32              9   fastball   
69626      17843             15           32              9     slider   

              pitch_sequence  
0                   fastball  
1         fastball -> cutter  
2         cutter -> splitter  
3       splitter -> fastball  
4       fastball -> fastball  
...                      ...  
69622   fastball -> fastball  
69623  fastball -> curveball  
69624    curveball -> slider  
69625     slider -> fastball  
69626     fastball -> slider  

[69627 rows x 6 columns]
In [78]:
relevant_outcomes = ['strikeout', 'out', 'double_play']

# Calculate success rates
sequence_success = (
    df_filtered_copy[df_filtered_copy['final_result'].isin(relevant_outcomes)]
    .groupby('pitch_sequence')
    .size()
)
sequence_total = df_filtered_copy.groupby('pitch_sequence').size()
sequence_success_rate = (sequence_success / sequence_total).fillna(0)
if sequence_success_rate.empty:
    raise ValueError("No valid sequences found. Check your sequence success logic.")
print("\nTop 10 pitch sequences by success rate:")
print(sequence_success_rate.sort_values(ascending=False).head(10))
Top 10 pitch sequences by success rate:
pitch_sequence
curveball -> splitter     0.781818
changeup -> curveball     0.752887
curveball -> curveball    0.744118
changeup -> cutter        0.743719
slider -> changeup        0.739464
splitter -> curveball     0.731884
slider -> splitter        0.731111
changeup -> slider        0.729870
splitter -> slider        0.723343
cutter -> curveball       0.722892
dtype: float64
In [79]:
df_filtered_copy
Out[79]:
at_bat_id season_number game_number inning_number count pitch_type outcome result final_result prev_pitch_type prev_result at_bat_length pitch_sequence
0 1 1 1 1 00 fastball ball None single None None 6 fastball
1 1 1 1 1 10 cutter swinging_strike None single fastball ball 6 fastball -> cutter
2 1 1 1 1 11 splitter foul None single cutter swinging_strike 6 cutter -> splitter
3 1 1 1 1 12 fastball ball None single splitter foul 6 splitter -> fastball
4 1 1 1 1 22 fastball ball None single fastball ball 6 fastball -> fastball
... ... ... ... ... ... ... ... ... ... ... ... ... ...
69622 17843 15 32 9 10 fastball called_strike None strikeout fastball ball 6 fastball -> fastball
69623 17843 15 32 9 11 curveball called_strike None strikeout fastball called_strike 6 fastball -> curveball
69624 17843 15 32 9 12 slider ball None strikeout curveball called_strike 6 curveball -> slider
69625 17843 15 32 9 22 fastball foul None strikeout slider ball 6 slider -> fastball
69626 17843 15 32 9 22 slider swinging_strike strikeout strikeout fastball foul 6 fastball -> slider

69627 rows × 13 columns

In [80]:
# Filter for first pitches only
first_pitches = df_filtered_copy[df_filtered_copy['count'] == '00']

# Display a sample to verify
print("First pitches sample:")
print(first_pitches.head())
First pitches sample:
    at_bat_id  season_number  game_number  inning_number count pitch_type  \
0           1              1            1              1    00   fastball   
6           2              1            1              1    00   fastball   
10          3              1            1              1    00   fastball   
11          4              1            1              1    00     slider   
14          5              1            1              2    00  curveball   

          outcome result final_result prev_pitch_type prev_result  \
0            ball   None       single            None        None   
6            ball   None          out            None        None   
10   ball_in_play    out          out            None        None   
11           ball   None          out            None        None   
14  called_strike   None    strikeout            None        None   

    at_bat_length pitch_sequence  
0               6       fastball  
6               4       fastball  
10              1       fastball  
11              3         slider  
14              6      curveball  
In [81]:
# Group by pitch type and outcome, then calculate proportions of final results
first_pitch_impact = (
    first_pitches.groupby(['pitch_type', 'outcome'])['final_result']
    .value_counts(normalize=True)
    .unstack(fill_value=0)
)

# Display the results
print("Impact of First Pitch Type and Outcome on Final At-Bat Results:")
display(first_pitch_impact)
Impact of First Pitch Type and Outcome on Final At-Bat Results:
final_result double double_play hit_by_pitch home_run out single strikeout triple walk
pitch_type outcome
changeup ball 0.031056 0.026915 0.006211 0.024845 0.434783 0.132505 0.207039 0.006211 0.130435
ball_in_play 0.086207 0.000000 0.000000 0.051724 0.655172 0.206897 0.000000 0.000000 0.000000
called_strike 0.031250 0.039062 0.019531 0.019531 0.453125 0.097656 0.285156 0.007812 0.046875
foul 0.029630 0.007407 0.007407 0.022222 0.496296 0.118519 0.244444 0.000000 0.074074
swinging_strike 0.020979 0.006993 0.006993 0.041958 0.426573 0.132867 0.321678 0.006993 0.034965
curveball ball 0.037707 0.016591 0.001508 0.027149 0.441931 0.129713 0.203620 0.000000 0.141780
ball_in_play 0.110294 0.036765 0.000000 0.080882 0.610294 0.161765 0.000000 0.000000 0.000000
called_strike 0.038062 0.024221 0.005190 0.017301 0.403114 0.126298 0.314879 0.003460 0.067474
foul 0.038095 0.009524 0.009524 0.019048 0.419048 0.104762 0.352381 0.000000 0.047619
hit_by_pitch 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
swinging_strike 0.047619 0.034014 0.006803 0.027211 0.476190 0.095238 0.265306 0.000000 0.047619
cutter ball 0.053156 0.014950 0.008306 0.043189 0.421927 0.127907 0.191030 0.001661 0.137874
ball_in_play 0.057971 0.028986 0.000000 0.038647 0.652174 0.212560 0.000000 0.009662 0.000000
called_strike 0.045175 0.022587 0.006160 0.022587 0.390144 0.127310 0.310062 0.002053 0.073922
foul 0.046729 0.032710 0.000000 0.014019 0.401869 0.158879 0.303738 0.000000 0.042056
hit_by_pitch 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
swinging_strike 0.026846 0.020134 0.006711 0.040268 0.463087 0.134228 0.261745 0.000000 0.046980
fastball ball 0.046615 0.024347 0.009501 0.029394 0.418646 0.125297 0.200119 0.003860 0.142221
ball_in_play 0.062035 0.033085 0.000000 0.043011 0.655087 0.202647 0.000000 0.004136 0.000000
called_strike 0.034640 0.021344 0.008747 0.023093 0.414976 0.121763 0.316305 0.004549 0.054584
foul 0.031461 0.015730 0.008240 0.025468 0.436704 0.139326 0.294382 0.002247 0.046442
hit_by_pitch 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
swinging_strike 0.042587 0.020505 0.015773 0.020505 0.424290 0.110410 0.315457 0.003155 0.047319
slider ball 0.047354 0.023677 0.009053 0.036908 0.427577 0.130223 0.195682 0.003482 0.126045
ball_in_play 0.074713 0.045977 0.000000 0.068966 0.632184 0.169540 0.000000 0.008621 0.000000
called_strike 0.037201 0.017715 0.012400 0.019486 0.426926 0.125775 0.317981 0.002657 0.039858
foul 0.025000 0.018750 0.003125 0.021875 0.425000 0.118750 0.325000 0.000000 0.062500
hit_by_pitch 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
swinging_strike 0.031674 0.033937 0.006787 0.006787 0.418552 0.147059 0.300905 0.004525 0.049774
splitter ball 0.008333 0.041667 0.000000 0.016667 0.466667 0.133333 0.200000 0.008333 0.125000
ball_in_play 0.088235 0.029412 0.000000 0.000000 0.735294 0.147059 0.000000 0.000000 0.000000
called_strike 0.069444 0.013889 0.000000 0.041667 0.319444 0.194444 0.333333 0.000000 0.027778
foul 0.100000 0.000000 0.000000 0.000000 0.466667 0.100000 0.266667 0.000000 0.066667
hit_by_pitch 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
swinging_strike 0.069767 0.046512 0.000000 0.046512 0.372093 0.069767 0.348837 0.000000 0.046512
In [82]:
from scipy.stats import chi2_contingency

# Create contingency table for first pitch type, outcome, and final result
contingency_table = first_pitches.pivot_table(
    index=['pitch_type', 'outcome'], columns='final_result', aggfunc='size', fill_value=0
)
contingency_table = contingency_table[contingency_table.sum(axis=1) > 10]

# Perform chi-square test
chi2, p, dof, expected = chi2_contingency(contingency_table)

print(f"Chi-Square Test Statistic: {chi2}")
print(f"P-Value: {p:.10f}")
expected_min = np.min(expected)
expected_max = np.max(expected)
expected_mean = np.mean(expected)
print(f"Expected min:", expected_min)
print(f"Expected max:", expected_max)
print(f"Expected mean:", expected_mean)
if p < 0.05:
    print("Reject the null hypothesis: The first pitch type and outcome affect the at-bat result.")
else:
    print("Fail to reject the null hypothesis: The first pitch type and outcome do not affect the at-bat result.")
Chi-Square Test Statistic: 4995.337896090073
P-Value: 0.0000000000
Expected min: 0.10085259142921248
Expected max: 1510.9526587390621
Expected mean: 63.89964157706093
Reject the null hypothesis: The first pitch type and outcome affect the at-bat result.
In [83]:
import seaborn as sns
import matplotlib.pyplot as plt

# Melt the DataFrame for better visualization
impact_melted = first_pitch_impact.reset_index().melt(
    id_vars=['pitch_type', 'outcome'], var_name='final_result', value_name='proportion'
)

# Heatmap visualization
plt.figure(figsize=(14, 8))
sns.heatmap(
    first_pitch_impact, annot=True, fmt=".2f", cmap="Purples_r",
    cbar_kws={'label': 'Proportion of Final Result'}
)
plt.title("Impact of First Pitch Type and Outcome on Final At-Bat Result")
plt.xlabel("Final Result")
plt.ylabel("First Pitch (Type and Outcome)")
plt.show()
In [84]:
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression
from sklearn.metrics import classification_report, roc_auc_score

final_result_mapping = {
    'strikeout': 1, 'out': 1, 'double_play': 1,  # Positive results for pitcher
    'hit_by_pitch': 0, 'single': 0, 'double': 0,
    'triple': 0, 'home_run': 0, 'walk': 0  # Negative results for pitcher
}
first_pitches = first_pitches.copy()
first_pitches['final_result_binary'] = first_pitches['final_result'].map(final_result_mapping)

positive_negative_impact = (
    first_pitches.groupby(['pitch_type', 'outcome'])['final_result_binary']
    .value_counts(normalize=True)
    .unstack(fill_value=0)
)

plt.figure(figsize=(14, 8))
sns.heatmap(
    positive_negative_impact, annot=True, fmt=".2f", cmap="Reds_r",
    cbar_kws={'label': 'Proportion of Positive vs Negative Results'}
)
plt.title("Impact of First Pitch Type and Outcome on Positive vs Negative Results")
plt.xlabel("Positive vs Negative")
plt.ylabel("First Pitch (Type and Outcome)")
plt.show()

# Prepare features and target
X = pd.get_dummies(first_pitches[['pitch_type', 'outcome']], drop_first=True)
y = first_pitches['final_result_binary']

# Split data
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

# Train logistic regression
model = LogisticRegression(random_state=42, class_weight='balanced')
model.fit(X_train, y_train)

# Evaluate the model
y_pred = model.predict(X_test)
y_proba = model.predict_proba(X_test)[:, 1]
print(classification_report(y_test, y_pred))
print("AUC-ROC:", roc_auc_score(y_test, y_proba))
              precision    recall  f1-score   support

           0       0.35      0.58      0.44      1051
           1       0.76      0.55      0.64      2518

    accuracy                           0.56      3569
   macro avg       0.55      0.57      0.54      3569
weighted avg       0.64      0.56      0.58      3569

AUC-ROC: 0.5702742348336507
In [85]:
positive_outcomes = first_pitches[first_pitches['final_result_binary'] == 1]

# Group by pitch type and outcome, calculate proportions for positive outcomes
positive_impact_heatmap = (
    positive_outcomes.groupby(['pitch_type', 'outcome']).size().unstack(fill_value=0)
)

# Normalize across outcomes for better comparison
positive_impact_heatmap_normalized = positive_impact_heatmap.div(positive_impact_heatmap.sum(axis=1), axis=0)

# Plot the heatmap
plt.figure(figsize=(10, 8))
sns.heatmap(
    positive_impact_heatmap_normalized, annot=True, fmt=".2f", cmap="YlGnBu",
    cbar_kws={'label': 'Proportion of Positive Outcomes'}
)
plt.title("Proportion of Positive Outcomes by Pitch Type and Pitch Outcome")
plt.xlabel("Outcome")
plt.ylabel("Pitch Type")
plt.show()

In [86]:
df_filtered_copy
Out[86]:
at_bat_id season_number game_number inning_number count pitch_type outcome result final_result prev_pitch_type prev_result at_bat_length pitch_sequence
0 1 1 1 1 00 fastball ball None single None None 6 fastball
1 1 1 1 1 10 cutter swinging_strike None single fastball ball 6 fastball -> cutter
2 1 1 1 1 11 splitter foul None single cutter swinging_strike 6 cutter -> splitter
3 1 1 1 1 12 fastball ball None single splitter foul 6 splitter -> fastball
4 1 1 1 1 22 fastball ball None single fastball ball 6 fastball -> fastball
... ... ... ... ... ... ... ... ... ... ... ... ... ...
69622 17843 15 32 9 10 fastball called_strike None strikeout fastball ball 6 fastball -> fastball
69623 17843 15 32 9 11 curveball called_strike None strikeout fastball called_strike 6 fastball -> curveball
69624 17843 15 32 9 12 slider ball None strikeout curveball called_strike 6 curveball -> slider
69625 17843 15 32 9 22 fastball foul None strikeout slider ball 6 slider -> fastball
69626 17843 15 32 9 22 slider swinging_strike strikeout strikeout fastball foul 6 fastball -> slider

69627 rows × 13 columns

In [87]:
df_filtered_copy['full_pitch_sequence'] = (
    df_filtered_copy.groupby('at_bat_id')['pitch_type']
    .transform(lambda pitches: ' -> '.join(pitches))
)
In [88]:
df_filtered_copy.head(20)
Out[88]:
at_bat_id season_number game_number inning_number count pitch_type outcome result final_result prev_pitch_type prev_result at_bat_length pitch_sequence full_pitch_sequence
0 1 1 1 1 00 fastball ball None single None None 6 fastball fastball -> cutter -> splitter -> fastball -> ...
1 1 1 1 1 10 cutter swinging_strike None single fastball ball 6 fastball -> cutter fastball -> cutter -> splitter -> fastball -> ...
2 1 1 1 1 11 splitter foul None single cutter swinging_strike 6 cutter -> splitter fastball -> cutter -> splitter -> fastball -> ...
3 1 1 1 1 12 fastball ball None single splitter foul 6 splitter -> fastball fastball -> cutter -> splitter -> fastball -> ...
4 1 1 1 1 22 fastball ball None single fastball ball 6 fastball -> fastball fastball -> cutter -> splitter -> fastball -> ...
5 1 1 1 1 32 splitter ball_in_play single single fastball ball 6 fastball -> splitter fastball -> cutter -> splitter -> fastball -> ...
6 2 1 1 1 00 fastball ball None out None None 4 fastball fastball -> fastball -> fastball -> fastball
7 2 1 1 1 10 fastball ball None out fastball ball 4 fastball -> fastball fastball -> fastball -> fastball -> fastball
8 2 1 1 1 20 fastball foul None out fastball ball 4 fastball -> fastball fastball -> fastball -> fastball -> fastball
9 2 1 1 1 21 fastball ball_in_play out out fastball foul 4 fastball -> fastball fastball -> fastball -> fastball -> fastball
10 3 1 1 1 00 fastball ball_in_play out out None None 1 fastball fastball
11 4 1 1 1 00 slider ball None out None None 3 slider slider -> changeup -> cutter
12 4 1 1 1 10 changeup called_strike None out slider ball 3 slider -> changeup slider -> changeup -> cutter
13 4 1 1 1 11 cutter ball_in_play out out changeup called_strike 3 changeup -> cutter slider -> changeup -> cutter
14 5 1 1 2 00 curveball called_strike None strikeout None None 6 curveball curveball -> slider -> slider -> cutter -> cur...
15 5 1 1 2 01 slider ball None strikeout curveball called_strike 6 curveball -> slider curveball -> slider -> slider -> cutter -> cur...
16 5 1 1 2 11 slider ball None strikeout slider ball 6 slider -> slider curveball -> slider -> slider -> cutter -> cur...
17 5 1 1 2 21 cutter swinging_strike None strikeout slider ball 6 slider -> cutter curveball -> slider -> slider -> cutter -> cur...
18 5 1 1 2 22 curveball ball None strikeout cutter swinging_strike 6 cutter -> curveball curveball -> slider -> slider -> cutter -> cur...
19 5 1 1 2 32 slider swinging_strike strikeout strikeout curveball ball 6 curveball -> slider curveball -> slider -> slider -> cutter -> cur...
In [89]:
def map_final_result(df):
    mapping = {
        'strikeout': 1, 'out': 1, 'double_play': 1,
        'home_run': 0, 'triple': 0, 'double': 0,
        'single': 0, 'hit_by_pitch': 0, 'walk': 0
    }
    df['final_result_binary'] = df['final_result'].map(mapping)
    return df

df_filtered_copy = map_final_result(df_filtered_copy)
In [90]:
# Required imports
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import classification_report, roc_auc_score
import pandas as pd

# Create feature matrix (X) and target variable (y)
X = pd.get_dummies(df_filtered_copy[['count', 'prev_pitch_type', 'prev_result', 'pitch_type']], drop_first=True)
y = df_filtered_copy['final_result_binary']  # Ensure 'final_result_binary' exists in your DataFrame

# Define the function to train a Random Forest model
def train_random_forest(X, y):
    X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
    model = RandomForestClassifier(random_state=42)
    model.fit(X_train, y_train)

    y_pred = model.predict(X_test)
    print(classification_report(y_test, y_pred))
    print("AUC-ROC:", roc_auc_score(y_test, model.predict_proba(X_test)[:, 1]))
    
    return model

# Train the model
model = train_random_forest(X, y)

# Predict outcomes and calculate probabilities
df_filtered_copy['predicted_outcome'] = model.predict_proba(X)[:, 1]
              precision    recall  f1-score   support

           0       0.51      0.07      0.13      4241
           1       0.71      0.97      0.82      9685

    accuracy                           0.70     13926
   macro avg       0.61      0.52      0.47     13926
weighted avg       0.65      0.70      0.61     13926

AUC-ROC: 0.5823671178554556
In [91]:
df_filtered_copy.head(100)
Out[91]:
at_bat_id season_number game_number inning_number count pitch_type outcome result final_result prev_pitch_type prev_result at_bat_length pitch_sequence full_pitch_sequence final_result_binary predicted_outcome
0 1 1 1 1 00 fastball ball None single None None 6 fastball fastball -> cutter -> splitter -> fastball -> ... 0 0.703550
1 1 1 1 1 10 cutter swinging_strike None single fastball ball 6 fastball -> cutter fastball -> cutter -> splitter -> fastball -> ... 0 0.642805
2 1 1 1 1 11 splitter foul None single cutter swinging_strike 6 cutter -> splitter fastball -> cutter -> splitter -> fastball -> ... 0 0.398851
3 1 1 1 1 12 fastball ball None single splitter foul 6 splitter -> fastball fastball -> cutter -> splitter -> fastball -> ... 0 0.779986
4 1 1 1 1 22 fastball ball None single fastball ball 6 fastball -> fastball fastball -> cutter -> splitter -> fastball -> ... 0 0.712617
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
95 23 1 1 6 01 slider foul None strikeout curveball foul 6 curveball -> slider curveball -> slider -> curveball -> fastball -... 1 0.755172
96 23 1 1 6 02 curveball ball None strikeout slider foul 6 slider -> curveball curveball -> slider -> curveball -> fastball -... 1 0.831980
97 23 1 1 6 12 fastball ball None strikeout curveball ball 6 curveball -> fastball curveball -> slider -> curveball -> fastball -... 1 0.880633
98 23 1 1 6 22 slider foul None strikeout fastball ball 6 fastball -> slider curveball -> slider -> curveball -> fastball -... 1 0.675387
99 23 1 1 6 22 fastball swinging_strike strikeout strikeout slider foul 6 slider -> fastball curveball -> slider -> curveball -> fastball -... 1 0.669387

100 rows × 16 columns

In [92]:
# Handle '00' counts
zero_zero_pitches = df_filtered_copy[df_filtered_copy['count'] == "00"]
optimal_zero_zero = (
    zero_zero_pitches.groupby('pitch_type')['predicted_outcome']
    .mean()
    .reset_index()
    .assign(count="00", prev_pitch_type=None, prev_result=None)
)

# Handle other counts
non_zero_pitches = df_filtered_copy[df_filtered_copy['count'] != "00"]
optimal_non_zero = (
    non_zero_pitches.groupby(['count', 'prev_pitch_type', 'prev_result', 'pitch_type'])['predicted_outcome']
    .mean()
    .reset_index()
)

# Combine
optimal_pitches_combined = pd.concat([optimal_zero_zero, optimal_non_zero], ignore_index=True).drop_duplicates()
print(optimal_pitches_combined)
     pitch_type  predicted_outcome count prev_pitch_type      prev_result
0      changeup           0.714565    00            None             None
1     curveball           0.712766    00            None             None
2        cutter           0.679565    00            None             None
3      fastball           0.703550    00            None             None
4        slider           0.702603    00            None             None
...         ...                ...   ...             ...              ...
1036   fastball           0.538603    32        splitter             foul
1037     slider           0.305917    32        splitter             foul
1038   splitter           0.536354    32        splitter             foul
1039   fastball           0.856927    32        splitter  swinging_strike
1040     slider           0.127024    32        splitter  swinging_strike

[1041 rows x 5 columns]
In [93]:
# Focus on terminal results only
terminal_states = ['strikeout', 'out', 'double_play']

filtered_df = df_filtered_copy[df_filtered_copy['final_result'].isin(terminal_states)]

# Group by count, prev_pitch_type, and pitch_type
pitch_analysis = (
    filtered_df.groupby(['count', 'prev_pitch_type', 'pitch_type'])['final_result']
    .count()
    .reset_index(name='frequency')
    .sort_values(by='frequency', ascending=False)
)

# Display the top pitch combinations leading to terminal states
display(pitch_analysis.head(10))
count prev_pitch_type pitch_type frequency
21 01 fastball fastball 1559
93 10 fastball fastball 1079
128 11 fastball fastball 921
22 01 fastball slider 893
164 12 fastball fastball 869
270 22 fastball fastball 826
57 02 fastball fastball 767
27 01 slider fastball 634
165 12 fastball slider 633
58 02 fastball slider 558
In [94]:
import seaborn as sns
import matplotlib.pyplot as plt

# Group and visualize the best pitch for each count
top_pitches_by_count = (
    df_filtered_copy.groupby(['count', 'pitch_type'])['predicted_outcome']
    .mean()
    .reset_index()
)

plt.figure(figsize=(12, 6))
sns.barplot(data=top_pitches_by_count, x='count', y='predicted_outcome', hue='pitch_type')
plt.title("Optimal Pitches by Count (Mean Predicted Outcome)")
plt.show()
In [95]:
from collections import defaultdict

# Step 0: Define terminal states
pd.set_option('display.max_colwidth', None)

# Function to construct pitch chains
def construct_pitch_chains(df, max_chain_length):
    """
    Constructs pitch chains of various lengths from the given DataFrame.

    Args:
        df (pd.DataFrame): The input DataFrame containing pitch sequences.
        max_chain_length (int): The maximum chain length to construct.

    Returns:
        pd.DataFrame: The DataFrame with additional columns for pitch chains.
    """
    df = df.copy()  # Avoid modifying the original DataFrame
    df = df.dropna(subset=['pitch_sequence'])  # Drop rows with NaN pitch sequences
    
    # Add pitch chain columns for each chain length
    for length in range(1, max_chain_length + 1):
        chain_column = f'pitch_chain_{length}'
        df[chain_column] = (
            df['full_pitch_sequence']
            .apply(lambda seq: " -> ".join(seq.split(" -> ")[:length]) if isinstance(seq, str) and len(seq.split(" -> ")) >= length else None)
        )
    
    # Add pitch_chain_7+ for sequences with 7 or more pitches
    df['pitch_chain_7+'] = df['full_pitch_sequence'].apply(
        lambda seq: seq if isinstance(seq, str) and len(seq.split(" -> ")) >= 7 else None
    )
    return df
In [96]:
# Load or prepare `df_filtered_copy` if not already available
# Example: Uncomment and replace with your data loading logic
# df_filtered_copy = pd.read_csv("path_to_your_pitch_data.csv")

# Step 0: Construct pitch chains
max_chain_length = 6
df_with_chains = construct_pitch_chains(df_filtered_copy, max_chain_length=max_chain_length)

# Step 1: Analyze sequences for exact at-bat lengths
summary_dfs = {}
for length in range(1, max_chain_length + 1):
    chain_column = f'pitch_chain_{length}'

    # Filter at-bats with exact length
    filtered_df = df_with_chains[
        df_with_chains['full_pitch_sequence'].apply(lambda seq: len(seq.split(" -> ")) == length if isinstance(seq, str) else False)
    ].copy()  # Use `.copy()` to avoid SettingWithCopyWarning

    if filtered_df.empty:
        print(f"No data available for pitch chains of length {length}. Skipping...")
        continue

    # Add a condition for success_occurrences
    filtered_df['is_success'] = (
        (filtered_df['result'] == filtered_df['final_result']) &
        (filtered_df['final_result_binary'] == 1)
    )

    # Group by subsequence and aggregate unique at_bat_id counts
    grouped = filtered_df.groupby(chain_column).agg(
        total_occurrences=('at_bat_id', 'nunique'),  # Count unique at_bat_id
        success_occurrences=('is_success', 'sum')  # Count successes based on the new condition
    ).reset_index().rename(columns={chain_column: 'subsequence'})

    # Calculate success percentages
    grouped['success_percentage'] = (
        grouped['success_occurrences'] / grouped['total_occurrences'] * 100
    )

    # Sort by success percentage and total occurrences
    grouped = grouped.sort_values(by=['success_percentage', 'total_occurrences'], ascending=[False, False])
    summary_dfs[length] = grouped

# Step 2: Extract sequences 7 pitches long or longer
pitch_chain_7plus_df = df_with_chains[df_with_chains['pitch_chain_7+'].notna()].copy()  # Use `.copy()` here as well

# Add the same success condition for sequences 7+ pitches long
pitch_chain_7plus_df['is_success'] = (
    (pitch_chain_7plus_df['result'] == pitch_chain_7plus_df['final_result']) &
    (pitch_chain_7plus_df['final_result_binary'] == 1)
)

# Aggregate at_bat_id counts for sequences 7+ pitches long
pitch_chain_7plus_agg = (
    pitch_chain_7plus_df.groupby('pitch_chain_7+').agg(
        total_occurrences=('at_bat_id', 'nunique'),  # Count unique at_bat_id
        success_occurrences=('is_success', 'sum')  # Count successes based on the new condition
    )
    .reset_index()
    .rename(columns={'pitch_chain_7+': 'subsequence'})
)

# Calculate success percentages
pitch_chain_7plus_agg['success_percentage'] = (
    pitch_chain_7plus_agg['success_occurrences'] / pitch_chain_7plus_agg['total_occurrences'] * 100
)

# Sort the dataframe
pitch_chain_7plus_agg = pitch_chain_7plus_agg.sort_values(by=['success_percentage', 'total_occurrences'], ascending=[False, False])

# Step 3: Display the results by exact length
for length, df in summary_dfs.items():
    print(f"\nTop Pitch Sequences of Length {length} (Sorted by Success Percentage, then Total Occurrences):")
    display(df.head(20))

# Display sequences 7+ pitches long
print("\nTop Pitch Sequences of Length 7+ (Sorted by Success Percentage, then Total Occurrences):")
display(pitch_chain_7plus_agg.head(20))
Top Pitch Sequences of Length 1 (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
5 splitter 35 26 74.285714
3 fastball 1238 832 67.205170
2 cutter 210 141 67.142857
4 slider 357 236 66.106443
0 changeup 116 76 65.517241
1 curveball 138 88 63.768116
Top Pitch Sequences of Length 2 (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
31 splitter -> curveball 4 4 100.000000
34 splitter -> slider 5 4 80.000000
8 curveball -> cutter 30 23 76.666667
0 changeup -> changeup 24 18 75.000000
11 curveball -> splitter 8 6 75.000000
24 slider -> changeup 72 53 73.611111
4 changeup -> slider 44 32 72.727273
23 fastball -> splitter 47 34 72.340426
13 cutter -> curveball 21 15 71.428571
33 splitter -> fastball 17 12 70.588235
19 fastball -> curveball 94 66 70.212766
14 cutter -> cutter 20 14 70.000000
1 changeup -> curveball 10 7 70.000000
2 changeup -> cutter 10 7 70.000000
26 slider -> cutter 63 44 69.841270
3 changeup -> fastball 91 63 69.230769
27 slider -> fastball 276 191 69.202899
18 fastball -> changeup 175 121 69.142857
6 curveball -> changeup 32 22 68.750000
28 slider -> slider 114 78 68.421053
Top Pitch Sequences of Length 3 (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
106 fastball -> cutter -> changeup 12 12 100.0
27 changeup -> slider -> slider 10 10 100.0
55 curveball -> slider -> changeup 9 9 100.0
15 changeup -> cutter -> slider 5 5 100.0
84 cutter -> fastball -> splitter 5 5 100.0
132 slider -> changeup -> cutter 5 5 100.0
135 slider -> changeup -> splitter 5 5 100.0
6 changeup -> curveball -> changeup 4 4 100.0
10 changeup -> curveball -> slider 4 4 100.0
22 changeup -> fastball -> splitter 4 4 100.0
62 curveball -> splitter -> fastball 4 4 100.0
105 fastball -> curveball -> splitter 4 4 100.0
141 slider -> curveball -> splitter 4 4 100.0
2 changeup -> changeup -> cutter 3 3 100.0
73 cutter -> curveball -> splitter 3 3 100.0
125 fastball -> splitter -> curveball 3 3 100.0
168 splitter -> changeup -> fastball 3 3 100.0
173 splitter -> curveball -> slider 3 3 100.0
177 splitter -> fastball -> curveball 3 3 100.0
181 splitter -> fastball -> splitter 3 3 100.0
Top Pitch Sequences of Length 4 (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
528 slider -> fastball -> fastball -> curveball 14 14 100.0
355 fastball -> fastball -> changeup -> curveball 10 10 100.0
284 fastball -> changeup -> fastball -> cutter 9 9 100.0
461 slider -> changeup -> fastball -> slider 9 9 100.0
283 fastball -> changeup -> fastball -> curveball 7 7 100.0
360 fastball -> fastball -> curveball -> changeup 7 7 100.0
361 fastball -> fastball -> curveball -> curveball 7 7 100.0
568 slider -> slider -> slider -> slider 7 7 100.0
165 curveball -> slider -> fastball -> slider 6 6 100.0
251 cutter -> slider -> fastball -> curveball 6 6 100.0
392 fastball -> slider -> changeup -> cutter 6 6 100.0
412 fastball -> slider -> fastball -> splitter 6 6 100.0
413 fastball -> slider -> slider -> changeup 6 6 100.0
481 slider -> curveball -> fastball -> slider 6 6 100.0
510 slider -> fastball -> changeup -> curveball 6 6 100.0
519 slider -> fastball -> curveball -> slider 6 6 100.0
46 changeup -> fastball -> slider -> fastball 5 5 100.0
60 changeup -> slider -> fastball -> curveball 5 5 100.0
66 changeup -> slider -> slider -> slider 5 5 100.0
234 cutter -> fastball -> slider -> curveball 5 5 100.0
Top Pitch Sequences of Length 5 (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
894 fastball -> slider -> fastball -> slider -> slider 9 9 100.0
1143 slider -> fastball -> slider -> slider -> fastball 8 8 100.0
545 fastball -> changeup -> fastball -> slider -> slider 7 7 100.0
876 fastball -> slider -> fastball -> changeup -> fastball 7 7 100.0
888 fastball -> slider -> fastball -> fastball -> slider 7 7 100.0
801 fastball -> fastball -> slider -> fastball -> curveball 6 6 100.0
1248 splitter -> fastball -> fastball -> fastball -> fastball 6 6 100.0
183 curveball -> cutter -> fastball -> slider -> fastball 5 5 100.0
460 cutter -> slider -> fastball -> fastball -> slider 5 5 100.0
544 fastball -> changeup -> fastball -> slider -> fastball 5 5 100.0
658 fastball -> cutter -> fastball -> changeup -> slider 5 5 100.0
752 fastball -> fastball -> fastball -> changeup -> curveball 5 5 100.0
769 fastball -> fastball -> fastball -> fastball -> curveball 5 5 100.0
1205 slider -> slider -> slider -> fastball -> changeup 5 5 100.0
1208 slider -> slider -> slider -> fastball -> fastball 5 5 100.0
416 cutter -> fastball -> slider -> fastball -> fastball 4 4 100.0
496 fastball -> changeup -> changeup -> fastball -> fastball 4 4 100.0
536 fastball -> changeup -> fastball -> fastball -> changeup 4 4 100.0
541 fastball -> changeup -> fastball -> fastball -> splitter 4 4 100.0
673 fastball -> cutter -> fastball -> slider -> slider 4 4 100.0
Top Pitch Sequences of Length 6 (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
915 fastball -> fastball -> slider -> fastball -> slider -> slider 6 6 100.0
965 fastball -> slider -> changeup -> fastball -> fastball -> fastball 6 6 100.0
560 fastball -> changeup -> slider -> fastball -> fastball -> fastball 4 4 100.0
615 fastball -> curveball -> fastball -> fastball -> fastball -> fastball 4 4 100.0
703 fastball -> cutter -> slider -> fastball -> fastball -> slider 4 4 100.0
826 fastball -> fastball -> fastball -> cutter -> fastball -> fastball 4 4 100.0
871 fastball -> fastball -> fastball -> slider -> slider -> slider 4 4 100.0
925 fastball -> fastball -> slider -> slider -> fastball -> changeup 4 4 100.0
834 fastball -> fastball -> fastball -> fastball -> curveball -> cutter 3 3 100.0
860 fastball -> fastball -> fastball -> slider -> curveball -> fastball 3 3 100.0
864 fastball -> fastball -> fastball -> slider -> fastball -> cutter 3 3 100.0
892 fastball -> fastball -> slider -> cutter -> fastball -> changeup 3 3 100.0
936 fastball -> fastball -> slider -> splitter -> fastball -> fastball 3 3 100.0
1014 fastball -> slider -> fastball -> curveball -> fastball -> fastball 3 3 100.0
1084 fastball -> slider -> slider -> slider -> fastball -> splitter 3 3 100.0
1243 slider -> fastball -> changeup -> fastball -> fastball -> fastball 3 3 100.0
1292 slider -> fastball -> fastball -> fastball -> changeup -> slider 3 3 100.0
1305 slider -> fastball -> fastball -> fastball -> slider -> fastball 3 3 100.0
1339 slider -> fastball -> slider -> fastball -> cutter -> fastball 3 3 100.0
1420 slider -> slider -> fastball -> slider -> fastball -> fastball 3 3 100.0
Top Pitch Sequences of Length 7+ (Sorted by Success Percentage, then Total Occurrences):
subsequence total_occurrences success_occurrences success_percentage
652 fastball -> fastball -> curveball -> fastball -> fastball -> fastball -> fastball 3 3 100.0
763 fastball -> fastball -> fastball -> fastball -> fastball -> fastball -> fastball 3 3 100.0
888 fastball -> fastball -> slider -> fastball -> slider -> cutter -> fastball 3 3 100.0
305 cutter -> fastball -> fastball -> fastball -> fastball -> fastball -> fastball 2 2 100.0
307 cutter -> fastball -> fastball -> fastball -> fastball -> slider -> fastball 2 2 100.0
617 fastball -> fastball -> changeup -> fastball -> fastball -> fastball -> slider 2 2 100.0
747 fastball -> fastball -> fastball -> fastball -> changeup -> slider -> fastball 2 2 100.0
809 fastball -> fastball -> fastball -> slider -> fastball -> fastball -> fastball 2 2 100.0
826 fastball -> fastball -> fastball -> slider -> slider -> fastball -> fastball 2 2 100.0
904 fastball -> fastball -> slider -> slider -> fastball -> fastball -> slider 2 2 100.0
953 fastball -> slider -> curveball -> fastball -> slider -> fastball -> fastball 2 2 100.0
985 fastball -> slider -> fastball -> changeup -> fastball -> slider -> fastball 2 2 100.0
1010 fastball -> slider -> fastball -> fastball -> fastball -> changeup -> fastball 2 2 100.0
1014 fastball -> slider -> fastball -> fastball -> fastball -> fastball -> curveball 2 2 100.0
1043 fastball -> slider -> fastball -> slider -> fastball -> slider -> fastball 2 2 100.0
1070 fastball -> slider -> slider -> fastball -> cutter -> fastball -> fastball 2 2 100.0
1103 fastball -> slider -> slider -> splitter -> slider -> fastball -> fastball 2 2 100.0
1317 slider -> fastball -> fastball -> slider -> slider -> fastball -> fastball -> fastball 2 2 100.0
1326 slider -> fastball -> slider -> curveball -> fastball -> fastball -> fastball 2 2 100.0
0 changeup -> changeup -> changeup -> slider -> curveball -> fastball -> fastball 1 1 100.0
In [97]:
# Filter for splitter -> changeup sequences
sequence = "curveball -> cutter -> curveball"
filtered_rows = df_filtered_copy[
    (df_filtered_copy['full_pitch_sequence'] == sequence)
]

# Display the filtered rows
print(filtered_rows)
       at_bat_id  season_number  game_number  inning_number count pitch_type  \
36937       9482              8           31              4    00  curveball   
36938       9482              8           31              4    01     cutter   
36939       9482              8           31              4    02  curveball   
52779      13557             12           13              1    00  curveball   
52780      13557             12           13              1    01     cutter   
52781      13557             12           13              1    02  curveball   

               outcome     result final_result prev_pitch_type  \
36937    called_strike       None    strikeout            None   
36938  swinging_strike       None    strikeout       curveball   
36939  swinging_strike  strikeout    strikeout          cutter   
52779             foul       None    strikeout            None   
52780             foul       None    strikeout       curveball   
52781  swinging_strike  strikeout    strikeout          cutter   

           prev_result  at_bat_length       pitch_sequence  \
36937             None              3            curveball   
36938    called_strike              3  curveball -> cutter   
36939  swinging_strike              3  cutter -> curveball   
52779             None              3            curveball   
52780             foul              3  curveball -> cutter   
52781             foul              3  cutter -> curveball   

                    full_pitch_sequence  final_result_binary  \
36937  curveball -> cutter -> curveball                    1   
36938  curveball -> cutter -> curveball                    1   
36939  curveball -> cutter -> curveball                    1   
52779  curveball -> cutter -> curveball                    1   
52780  curveball -> cutter -> curveball                    1   
52781  curveball -> cutter -> curveball                    1   

       predicted_outcome  
36937           0.712766  
36938           0.763944  
36939           0.903841  
52779           0.712766  
52780           0.565639  
52781           0.928288  
In [98]:
# Exact match for splitter -> changeup sequences
exact_match = df_filtered_copy[df_filtered_copy['full_pitch_sequence'] == sequence]

# Display the exact matches
print(exact_match)
       at_bat_id  season_number  game_number  inning_number count pitch_type  \
36937       9482              8           31              4    00  curveball   
36938       9482              8           31              4    01     cutter   
36939       9482              8           31              4    02  curveball   
52779      13557             12           13              1    00  curveball   
52780      13557             12           13              1    01     cutter   
52781      13557             12           13              1    02  curveball   

               outcome     result final_result prev_pitch_type  \
36937    called_strike       None    strikeout            None   
36938  swinging_strike       None    strikeout       curveball   
36939  swinging_strike  strikeout    strikeout          cutter   
52779             foul       None    strikeout            None   
52780             foul       None    strikeout       curveball   
52781  swinging_strike  strikeout    strikeout          cutter   

           prev_result  at_bat_length       pitch_sequence  \
36937             None              3            curveball   
36938    called_strike              3  curveball -> cutter   
36939  swinging_strike              3  cutter -> curveball   
52779             None              3            curveball   
52780             foul              3  curveball -> cutter   
52781             foul              3  cutter -> curveball   

                    full_pitch_sequence  final_result_binary  \
36937  curveball -> cutter -> curveball                    1   
36938  curveball -> cutter -> curveball                    1   
36939  curveball -> cutter -> curveball                    1   
52779  curveball -> cutter -> curveball                    1   
52780  curveball -> cutter -> curveball                    1   
52781  curveball -> cutter -> curveball                    1   

       predicted_outcome  
36937           0.712766  
36938           0.763944  
36939           0.903841  
52779           0.712766  
52780           0.565639  
52781           0.928288  
In [99]:
# Validate chain length
filtered_exact = df_filtered_copy[
    (df_filtered_copy['full_pitch_sequence'] == sequence) & 
    (df_filtered_copy['full_pitch_sequence'].str.split(" -> ").str.len() == 3)
]

# Display the rows
print(filtered_exact)
       at_bat_id  season_number  game_number  inning_number count pitch_type  \
36937       9482              8           31              4    00  curveball   
36938       9482              8           31              4    01     cutter   
36939       9482              8           31              4    02  curveball   
52779      13557             12           13              1    00  curveball   
52780      13557             12           13              1    01     cutter   
52781      13557             12           13              1    02  curveball   

               outcome     result final_result prev_pitch_type  \
36937    called_strike       None    strikeout            None   
36938  swinging_strike       None    strikeout       curveball   
36939  swinging_strike  strikeout    strikeout          cutter   
52779             foul       None    strikeout            None   
52780             foul       None    strikeout       curveball   
52781  swinging_strike  strikeout    strikeout          cutter   

           prev_result  at_bat_length       pitch_sequence  \
36937             None              3            curveball   
36938    called_strike              3  curveball -> cutter   
36939  swinging_strike              3  cutter -> curveball   
52779             None              3            curveball   
52780             foul              3  curveball -> cutter   
52781             foul              3  cutter -> curveball   

                    full_pitch_sequence  final_result_binary  \
36937  curveball -> cutter -> curveball                    1   
36938  curveball -> cutter -> curveball                    1   
36939  curveball -> cutter -> curveball                    1   
52779  curveball -> cutter -> curveball                    1   
52780  curveball -> cutter -> curveball                    1   
52781  curveball -> cutter -> curveball                    1   

       predicted_outcome  
36937           0.712766  
36938           0.763944  
36939           0.903841  
52779           0.712766  
52780           0.565639  
52781           0.928288  
In [100]:
unique_at_bat_counts = (
    df_filtered_copy.groupby('full_pitch_sequence')['at_bat_id']
    .nunique()
    .reset_index(name='unique_at_bat_count')
)

# Find the count for a specific sequence
sequence_count = unique_at_bat_counts.loc[
    unique_at_bat_counts['full_pitch_sequence'] == sequence, 'unique_at_bat_count'
].values[0]

print(f"'{sequence}' unique at_bat_id count: {sequence_count}")
'curveball -> cutter -> curveball' unique at_bat_id count: 2
In [101]:
# Define terminal states and filter terminal_df
terminal_states = ['strikeout', 'out', 'double_play']
terminal_df = df_with_chains[df_with_chains['final_result'].isin(terminal_states)].copy()
In [102]:
from collections import defaultdict

# Initialize data structures
two_pitch_totals = defaultdict(int)
two_pitch_successes = defaultdict(int)
three_pitch_totals = defaultdict(int)
three_pitch_successes = defaultdict(int)

# Function to extract all overlapping subsequences of a given length
def extract_subsequences(chain, length):
    pitches = chain.split(" -> ")
    return [" -> ".join(pitches[i:i + length]) for i in range(len(pitches) - length + 1)]

# Extract totals for two-pitch and three-pitch sequences
for _, row in df_with_chains.iterrows():
    for chain_length in range(2, 7):  # Loop over chain lengths (2 to 6 and 7+)
        chain_column = f'pitch_chain_{chain_length}' if chain_length < 7 else 'pitch_chain_7+'
        chain = row.get(chain_column, None)
        if pd.isna(chain):
            continue
        
        # Count two-pitch subsequences
        for subseq in extract_subsequences(chain, 2):
            two_pitch_totals[subseq] += 1
        
        # Count three-pitch subsequences
        for subseq in extract_subsequences(chain, 3):
            three_pitch_totals[subseq] += 1

# Extract successes for two-pitch and three-pitch sequences from terminal_df
for _, row in terminal_df.iterrows():
    for chain_length in range(2, 7):  # Loop over chain lengths (2 to 6 and 7+)
        chain_column = f'pitch_chain_{chain_length}' if chain_length < 7 else 'pitch_chain_7+'
        chain = row.get(chain_column, None)
        if pd.isna(chain):
            continue
        
        # Count successful two-pitch subsequences
        for subseq in extract_subsequences(chain, 2):
            two_pitch_successes[subseq] += 1
        
        # Count successful three-pitch subsequences
        for subseq in extract_subsequences(chain, 3):
            three_pitch_successes[subseq] += 1

# Combine results into DataFrames
two_pitch_summary = pd.DataFrame([
    {
        'two_pitch_sequence': seq,
        'total_occurrences': total,
        'success_occurrences': two_pitch_successes.get(seq, 0),
        'success_percentage': (two_pitch_successes.get(seq, 0) / total * 100 if total > 0 else 0)
    }
    for seq, total in two_pitch_totals.items()
])

three_pitch_summary = pd.DataFrame([
    {
        'three_pitch_sequence': seq,
        'total_occurrences': total,
        'success_occurrences': three_pitch_successes.get(seq, 0),
        'success_percentage': (three_pitch_successes.get(seq, 0) / total * 100 if total > 0 else 0)
    }
    for seq, total in three_pitch_totals.items()
])

# Sort by success percentage and total occurrences
two_pitch_summary = two_pitch_summary.sort_values(by=['success_percentage', 'total_occurrences'], ascending=[False, False])
three_pitch_summary = three_pitch_summary.sort_values(by=['success_percentage', 'total_occurrences'], ascending=[False, False])

# Display results
print("\nTop Two-Pitch Sequences:")
display(two_pitch_summary.head(20))

print("\nTop Three-Pitch Sequences:")
display(three_pitch_summary.head(20))
Top Two-Pitch Sequences:
two_pitch_sequence total_occurrences success_occurrences success_percentage
13 curveball -> splitter 2027 1580 77.947706
34 splitter -> splitter 738 561 76.016260
6 changeup -> cutter 4645 3434 73.928956
10 cutter -> curveball 4198 3095 73.725584
24 splitter -> slider 4385 3219 73.409350
8 slider -> slider 33034 23151 70.082339
5 slider -> changeup 15976 11193 70.061342
32 cutter -> cutter 4649 3252 69.950527
29 changeup -> curveball 5026 3512 69.876641
7 curveball -> slider 12210 8514 69.729730
21 fastball -> slider 69404 48128 69.344706
19 curveball -> curveball 4320 2992 69.259259
26 changeup -> slider 13269 9176 69.153666
31 curveball -> changeup 6749 4664 69.106534
23 slider -> splitter 5439 3729 68.560397
12 fastball -> curveball 23519 16087 68.400017
17 slider -> fastball 62757 42832 68.250554
25 fastball -> changeup 35349 24099 68.174489
18 slider -> curveball 12118 8255 68.121802
33 splitter -> curveball 1586 1080 68.095839
Top Three-Pitch Sequences:
three_pitch_sequence total_occurrences success_occurrences success_percentage
144 curveball -> curveball -> changeup 128 128 100.000000
181 curveball -> splitter -> curveball 95 95 100.000000
170 splitter -> curveball -> cutter 50 50 100.000000
129 curveball -> splitter -> splitter 44 44 100.000000
208 splitter -> splitter -> splitter 39 39 100.000000
214 splitter -> splitter -> cutter 19 19 100.000000
212 splitter -> curveball -> splitter 89 85 95.505618
149 splitter -> changeup -> cutter 74 68 91.891892
65 cutter -> changeup -> curveball 234 208 88.888889
211 splitter -> slider -> splitter 126 111 88.095238
168 cutter -> changeup -> cutter 249 218 87.550201
185 slider -> cutter -> splitter 245 208 84.897959
122 changeup -> cutter -> slider 536 451 84.141791
151 curveball -> splitter -> cutter 62 52 83.870968
9 cutter -> curveball -> slider 764 628 82.198953
174 curveball -> splitter -> fastball 561 461 82.174688
183 splitter -> slider -> slider 577 471 81.629116
188 changeup -> changeup -> splitter 188 152 80.851064
153 splitter -> fastball -> cutter 283 227 80.212014
215 splitter -> splitter -> changeup 15 12 80.000000
In [103]:
sequence = "curveball -> cutter -> curveball"

summary_row = three_pitch_summary[three_pitch_summary['three_pitch_sequence'] == sequence]

if not summary_row.empty:
    summary_total = summary_row['total_occurrences'].values[0]
    summary_success = summary_row['success_occurrences'].values[0]
    summary_success_percentage = summary_row['success_percentage'].values[0]
    print(f"Summary Data - Total: {summary_total}, Success: {summary_success}, Success%: {summary_success_percentage:.2f}%")
else:
    print(f"Sequence '{sequence}' not found in three_pitch_summary.")
Summary Data - Total: 133, Success: 101, Success%: 75.94%
In [104]:
summary_row = three_pitch_summary[
    three_pitch_summary['three_pitch_sequence'] == sequence
]

print(summary_row[['three_pitch_sequence', 'total_occurrences', 'success_occurrences', 'success_percentage']])
                three_pitch_sequence  total_occurrences  success_occurrences  \
41  curveball -> cutter -> curveball                133                  101   

    success_percentage  
41            75.93985  
In [105]:
two_pitch_summary[['first_pitch', 'second_pitch']] = two_pitch_summary['two_pitch_sequence'].str.split(' -> ', expand=True)

# Pivot table to create the matrix for the heatmap
heatmap_data = two_pitch_summary.pivot(index='first_pitch', columns='second_pitch', values='success_percentage')

# Fill missing values with 0 (or any other default value)
heatmap_data = heatmap_data.fillna(0)

# Plot the heatmap
plt.figure(figsize=(10, 8))
sns.heatmap(heatmap_data, annot=True, cmap='rocket_r', fmt=".2f", cbar_kws={'label': 'Success %'})
plt.title('Success Percentage Heatmap for Two-Pitch Sequences')
plt.xlabel('Second Pitch')
plt.ylabel('First Pitch')
plt.show()
In [106]:
import plotly.graph_objects as go
import pandas as pd
import numpy as np

# Assuming three_pitch_summary is already prepared
three_pitch_summary[['first_pitch', 'second_pitch', 'third_pitch']] = three_pitch_summary['three_pitch_sequence'].str.split(' -> ', expand=True)

# Encode categorical pitches as numbers for plotting
x_categories = pd.Categorical(three_pitch_summary['first_pitch'])
y_categories = pd.Categorical(three_pitch_summary['second_pitch'])
z_categories = pd.Categorical(three_pitch_summary['third_pitch'])

three_pitch_summary['x'] = x_categories.codes
three_pitch_summary['y'] = y_categories.codes
three_pitch_summary['z'] = z_categories.codes

# Create the 3D scatter plot
fig = go.Figure()

# Add points
fig.add_trace(go.Scatter3d(
    x=three_pitch_summary['x'],
    y=three_pitch_summary['y'],
    z=three_pitch_summary['z'],
    mode='markers',
    marker=dict(
        size=10,
        color=three_pitch_summary['success_percentage'],  # Color based on success %
        colorscale='icefire',
        colorbar=dict(title='Success %'),
        showscale=True
    ),
    text=three_pitch_summary['three_pitch_sequence'] + "<br>Success: " + three_pitch_summary['success_percentage'].astype(str) + "%",
    hoverinfo='text'
))

# Update layout
fig.update_layout(
    scene=dict(
        xaxis=dict(
            title='First Pitch',
            tickmode='array',
            tickvals=np.arange(len(x_categories.categories)),
            ticktext=x_categories.categories
        ),
        yaxis=dict(
            title='Second Pitch',
            tickmode='array',
            tickvals=np.arange(len(y_categories.categories)),
            ticktext=y_categories.categories
        ),
        zaxis=dict(
            title='Third Pitch',
            tickmode='array',
            tickvals=np.arange(len(z_categories.categories)),
            ticktext=z_categories.categories
        )
    ),
    title='Interactive 3D Representation of Three-Pitch Sequences with Success Rate',
    margin=dict(l=0, r=0, b=0, t=50)
)

fig.show()
In [ ]: